@gitlab/ui 32.60.0 → 32.61.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": "32.60.0",
3
+ "version": "32.61.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -6306,6 +6306,16 @@
6306
6306
  padding-left: $gl-spacing-scale-5 !important;
6307
6307
  }
6308
6308
  }
6309
+ .gl-md-pl-7 {
6310
+ @include gl-media-breakpoint-up(md) {
6311
+ padding-left: $gl-spacing-scale-7;
6312
+ }
6313
+ }
6314
+ .gl-md-pl-7\! {
6315
+ @include gl-media-breakpoint-up(md) {
6316
+ padding-left: $gl-spacing-scale-7 !important;
6317
+ }
6318
+ }
6309
6319
  .gl-lg-pt-0 {
6310
6320
  @include gl-media-breakpoint-up(lg) {
6311
6321
  padding-top: 0;
@@ -1195,6 +1195,12 @@
1195
1195
  }
1196
1196
  }
1197
1197
 
1198
+ @mixin gl-md-pl-7 {
1199
+ @include gl-media-breakpoint-up(md) {
1200
+ @include gl-pl-7;
1201
+ }
1202
+ }
1203
+
1198
1204
  @mixin gl-lg-pt-0 {
1199
1205
  @include gl-media-breakpoint-up(lg) {
1200
1206
  @include gl-pt-0;