@gitlab/ui 62.6.0 → 62.7.0
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
CHANGED
package/src/scss/utilities.scss
CHANGED
|
@@ -6745,6 +6745,12 @@
|
|
|
6745
6745
|
.gl-column-gap-6\! {
|
|
6746
6746
|
column-gap: $gl-spacing-scale-6 !important;
|
|
6747
6747
|
}
|
|
6748
|
+
.gl-row-gap-6 {
|
|
6749
|
+
row-gap: $gl-spacing-scale-6;
|
|
6750
|
+
}
|
|
6751
|
+
.gl-row-gap-6\! {
|
|
6752
|
+
row-gap: $gl-spacing-scale-6 !important;
|
|
6753
|
+
}
|
|
6748
6754
|
.gl-xs-mb-3 {
|
|
6749
6755
|
@include gl-media-breakpoint-down(sm) {
|
|
6750
6756
|
margin-bottom: $gl-spacing-scale-3;
|
|
@@ -890,6 +890,18 @@
|
|
|
890
890
|
column-gap: $gl-spacing-scale-6;
|
|
891
891
|
}
|
|
892
892
|
|
|
893
|
+
/**
|
|
894
|
+
* Row gap utilities
|
|
895
|
+
*
|
|
896
|
+
* naming convention: gl-row-gap-{spacing-scale-index}
|
|
897
|
+
* notes:
|
|
898
|
+
* - Utilities should strictly follow $gl-spacing-scale
|
|
899
|
+
*/
|
|
900
|
+
|
|
901
|
+
@mixin gl-row-gap-6 {
|
|
902
|
+
row-gap: $gl-spacing-scale-6;
|
|
903
|
+
}
|
|
904
|
+
|
|
893
905
|
/**
|
|
894
906
|
* Responsive margin utilities.
|
|
895
907
|
*
|