@gitlab/ui 66.7.1 → 66.8.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": "66.7.1",
3
+ "version": "66.8.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -5579,6 +5579,18 @@
5579
5579
  max-width: 80% !important;
5580
5580
  }
5581
5581
  }
5582
+
5583
+ .gl-lg-max-w-50p {
5584
+ @include gl-media-breakpoint-up(lg) {
5585
+ max-width: 50%;
5586
+ }
5587
+ }
5588
+
5589
+ .gl-lg-max-w-50p\! {
5590
+ @include gl-media-breakpoint-up(lg) {
5591
+ max-width: 50% !important;
5592
+ }
5593
+ }
5582
5594
  .gl-p-0 {
5583
5595
  padding: 0;
5584
5596
  }
@@ -527,3 +527,9 @@
527
527
  max-width: 80%;
528
528
  }
529
529
  }
530
+
531
+ @mixin gl-lg-max-w-50p {
532
+ @include gl-media-breakpoint-up(lg) {
533
+ max-width: 50%;
534
+ }
535
+ }