@gitlab/ui 32.62.0 → 32.63.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
|
@@ -2940,6 +2940,18 @@
|
|
|
2940
2940
|
}
|
|
2941
2941
|
}
|
|
2942
2942
|
|
|
2943
|
+
.gl-md-flex-direction-column {
|
|
2944
|
+
@include gl-media-breakpoint-up(md) {
|
|
2945
|
+
@include gl-flex-direction-column;
|
|
2946
|
+
}
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
.gl-md-flex-direction-column\! {
|
|
2950
|
+
@include gl-media-breakpoint-up(md) {
|
|
2951
|
+
@include gl-flex-direction-column;
|
|
2952
|
+
}
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2943
2955
|
.gl-xs-flex-direction-column {
|
|
2944
2956
|
@include gl-media-breakpoint-down(sm) {
|
|
2945
2957
|
flex-direction: column;
|
|
@@ -96,6 +96,12 @@
|
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
+
@mixin gl-md-flex-direction-column {
|
|
100
|
+
@include gl-media-breakpoint-up(md) {
|
|
101
|
+
@include gl-flex-direction-column;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
99
105
|
@mixin gl-xs-flex-direction-column {
|
|
100
106
|
@include gl-media-breakpoint-down(sm) {
|
|
101
107
|
flex-direction: column;
|