@gitlab/ui 62.1.0 → 62.2.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": "62.1.0",
3
+ "version": "62.2.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -3375,6 +3375,18 @@
3375
3375
  flex-wrap: nowrap !important;
3376
3376
  }
3377
3377
 
3378
+ .gl-md-flex-nowrap {
3379
+ @include gl-media-breakpoint-up(md) {
3380
+ flex-wrap: nowrap;
3381
+ }
3382
+ }
3383
+
3384
+ .gl-md-flex-nowrap\! {
3385
+ @include gl-media-breakpoint-up(md) {
3386
+ flex-wrap: nowrap !important;
3387
+ }
3388
+ }
3389
+
3378
3390
  .gl-sm-flex-nowrap {
3379
3391
  @include gl-media-breakpoint-up(sm) {
3380
3392
  flex-wrap: nowrap;
@@ -95,6 +95,12 @@
95
95
  flex-wrap: nowrap;
96
96
  }
97
97
 
98
+ @mixin gl-md-flex-nowrap {
99
+ @include gl-media-breakpoint-up(md) {
100
+ @include gl-flex-nowrap;
101
+ }
102
+ }
103
+
98
104
  @mixin gl-sm-flex-nowrap {
99
105
  @include gl-media-breakpoint-up(sm) {
100
106
  @include gl-flex-nowrap;