@igo2/sdg-core 1.0.0-next.93 → 1.0.0-next.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/layout/bootstrap-layout.scss +143 -0
package/package.json
CHANGED
|
@@ -19,6 +19,29 @@
|
|
|
19
19
|
max-width: 559px;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
+
.row {
|
|
23
|
+
--bs-gutter-x: 2rem;
|
|
24
|
+
--bs-gutter-y: 0;
|
|
25
|
+
display: flex;
|
|
26
|
+
flex-wrap: wrap;
|
|
27
|
+
margin-top: calc(-1 * var(--bs-gutter-y));
|
|
28
|
+
margin-right: calc(-0.5 * var(--bs-gutter-x));
|
|
29
|
+
margin-left: calc(-0.5 * var(--bs-gutter-x));
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.row > * {
|
|
33
|
+
flex-shrink: 0;
|
|
34
|
+
width: 100%;
|
|
35
|
+
max-width: 100%;
|
|
36
|
+
padding-right: calc(var(--bs-gutter-x) * 0.5);
|
|
37
|
+
padding-left: calc(var(--bs-gutter-x) * 0.5);
|
|
38
|
+
margin-top: var(--bs-gutter-y);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.col {
|
|
42
|
+
flex: 1 0 0;
|
|
43
|
+
}
|
|
44
|
+
|
|
22
45
|
.row-cols-auto > * {
|
|
23
46
|
flex: 0 0 auto;
|
|
24
47
|
width: auto;
|
|
@@ -195,6 +218,30 @@
|
|
|
195
218
|
row-gap: 3rem !important;
|
|
196
219
|
}
|
|
197
220
|
|
|
221
|
+
.column-gap-0 {
|
|
222
|
+
column-gap: 0 !important;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.column-gap-1 {
|
|
226
|
+
column-gap: 0.25rem !important;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.column-gap-2 {
|
|
230
|
+
column-gap: 0.5rem !important;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.column-gap-3 {
|
|
234
|
+
column-gap: 1rem !important;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.column-gap-4 {
|
|
238
|
+
column-gap: 1.5rem !important;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.column-gap-5 {
|
|
242
|
+
column-gap: 3rem !important;
|
|
243
|
+
}
|
|
244
|
+
|
|
198
245
|
@media (min-width: 576px) {
|
|
199
246
|
.container-sm, .container {
|
|
200
247
|
max-width: 560px;
|
|
@@ -375,6 +422,30 @@
|
|
|
375
422
|
.row-gap-sm-5 {
|
|
376
423
|
row-gap: 3rem !important;
|
|
377
424
|
}
|
|
425
|
+
|
|
426
|
+
.column-gap-sm-0 {
|
|
427
|
+
column-gap: 0 !important;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.column-gap-sm-1 {
|
|
431
|
+
column-gap: 0.25rem !important;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.column-gap-sm-2 {
|
|
435
|
+
column-gap: 0.5rem !important;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.column-gap-sm-3 {
|
|
439
|
+
column-gap: 1rem !important;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.column-gap-sm-4 {
|
|
443
|
+
column-gap: 1.5rem !important;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.column-gap-sm-5 {
|
|
447
|
+
column-gap: 3rem !important;
|
|
448
|
+
}
|
|
378
449
|
}
|
|
379
450
|
|
|
380
451
|
@media (min-width: 768px) {
|
|
@@ -557,6 +628,30 @@
|
|
|
557
628
|
.row-gap-md-5 {
|
|
558
629
|
row-gap: 3rem !important;
|
|
559
630
|
}
|
|
631
|
+
|
|
632
|
+
.column-gap-md-0 {
|
|
633
|
+
column-gap: 0 !important;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.column-gap-md-1 {
|
|
637
|
+
column-gap: 0.25rem !important;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
.column-gap-md-2 {
|
|
641
|
+
column-gap: 0.5rem !important;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.column-gap-md-3 {
|
|
645
|
+
column-gap: 1rem !important;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.column-gap-md-4 {
|
|
649
|
+
column-gap: 1.5rem !important;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.column-gap-md-5 {
|
|
653
|
+
column-gap: 3rem !important;
|
|
654
|
+
}
|
|
560
655
|
}
|
|
561
656
|
|
|
562
657
|
@media (min-width: 992px) {
|
|
@@ -739,6 +834,30 @@
|
|
|
739
834
|
.row-gap-lg-5 {
|
|
740
835
|
row-gap: 3rem !important;
|
|
741
836
|
}
|
|
837
|
+
|
|
838
|
+
.column-gap-lg-0 {
|
|
839
|
+
column-gap: 0 !important;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
.column-gap-lg-1 {
|
|
843
|
+
column-gap: 0.25rem !important;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.column-gap-lg-2 {
|
|
847
|
+
column-gap: 0.5rem !important;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.column-gap-lg-3 {
|
|
851
|
+
column-gap: 1rem !important;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.column-gap-lg-4 {
|
|
855
|
+
column-gap: 1.5rem !important;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
.column-gap-lg-5 {
|
|
859
|
+
column-gap: 3rem !important;
|
|
860
|
+
}
|
|
742
861
|
}
|
|
743
862
|
|
|
744
863
|
@media (min-width: 1200px) {
|
|
@@ -921,4 +1040,28 @@
|
|
|
921
1040
|
.row-gap-xl-5 {
|
|
922
1041
|
row-gap: 3rem !important;
|
|
923
1042
|
}
|
|
1043
|
+
|
|
1044
|
+
.column-gap-xl-0 {
|
|
1045
|
+
column-gap: 0 !important;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.column-gap-xl-1 {
|
|
1049
|
+
column-gap: 0.25rem !important;
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
.column-gap-xl-2 {
|
|
1053
|
+
column-gap: 0.5rem !important;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.column-gap-xl-3 {
|
|
1057
|
+
column-gap: 1rem !important;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.column-gap-xl-4 {
|
|
1061
|
+
column-gap: 1.5rem !important;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
.column-gap-xl-5 {
|
|
1065
|
+
column-gap: 3rem !important;
|
|
1066
|
+
}
|
|
924
1067
|
}
|