@gitlab/ui 43.0.0 → 43.1.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "43.0.0",
3
+ "version": "43.1.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -3236,6 +3236,18 @@
3236
3236
  }
3237
3237
  }
3238
3238
 
3239
+ .gl-lg-flex-direction-column {
3240
+ @include gl-media-breakpoint-up(lg) {
3241
+ @include gl-flex-direction-column;
3242
+ }
3243
+ }
3244
+
3245
+ .gl-lg-flex-direction-column\! {
3246
+ @include gl-media-breakpoint-up(lg) {
3247
+ @include gl-flex-direction-column;
3248
+ }
3249
+ }
3250
+
3239
3251
  .gl-xs-flex-direction-column {
3240
3252
  @include gl-media-breakpoint-down(sm) {
3241
3253
  flex-direction: column;
@@ -95,6 +95,12 @@
95
95
  }
96
96
  }
97
97
 
98
+ @mixin gl-lg-flex-direction-column {
99
+ @include gl-media-breakpoint-up(lg) {
100
+ @include gl-flex-direction-column;
101
+ }
102
+ }
103
+
98
104
  @mixin gl-xs-flex-direction-column {
99
105
  @include gl-media-breakpoint-down(sm) {
100
106
  flex-direction: column;