@gitlab/ui 78.5.0 → 78.6.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": "78.5.0",
3
+ "version": "78.6.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -3336,6 +3336,18 @@ $gl-animate-skeleton-loader-max-width: 64 * $grid-size;
3336
3336
  }
3337
3337
  }
3338
3338
 
3339
+ .gl-lg-display-grid {
3340
+ @include gl-media-breakpoint-up(lg) {
3341
+ display: grid;
3342
+ }
3343
+ }
3344
+
3345
+ .gl-lg-display-grid\! {
3346
+ @include gl-media-breakpoint-up(lg) {
3347
+ display: grid !important;
3348
+ }
3349
+ }
3350
+
3339
3351
  .gl-sm-display-table-cell {
3340
3352
  @include gl-media-breakpoint-up(sm) {
3341
3353
  display: table-cell;
@@ -163,6 +163,12 @@
163
163
  }
164
164
  }
165
165
 
166
+ @mixin gl-lg-display-grid {
167
+ @include gl-media-breakpoint-up(lg) {
168
+ display: grid;
169
+ }
170
+ }
171
+
166
172
  @mixin gl-sm-display-table-cell {
167
173
  @include gl-media-breakpoint-up(sm) {
168
174
  @include gl-display-table-cell;