@gitlab/ui 36.2.0 → 36.3.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": "36.2.0",
3
+ "version": "36.3.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -84,7 +84,7 @@
84
84
  "@babel/preset-env": "^7.10.2",
85
85
  "@gitlab/eslint-plugin": "10.0.2",
86
86
  "@gitlab/stylelint-config": "4.0.0",
87
- "@gitlab/svgs": "2.2.0",
87
+ "@gitlab/svgs": "2.5.0",
88
88
  "@rollup/plugin-commonjs": "^11.1.0",
89
89
  "@rollup/plugin-node-resolve": "^7.1.3",
90
90
  "@rollup/plugin-replace": "^2.3.2",
@@ -6400,6 +6400,18 @@
6400
6400
  padding-left: $gl-spacing-scale-7 !important;
6401
6401
  }
6402
6402
  }
6403
+ .gl-md-px-7 {
6404
+ @include gl-media-breakpoint-up(md) {
6405
+ padding-left: $gl-spacing-scale-7;
6406
+ padding-right: $gl-spacing-scale-7;
6407
+ }
6408
+ }
6409
+ .gl-md-px-7\! {
6410
+ @include gl-media-breakpoint-up(md) {
6411
+ padding-left: $gl-spacing-scale-7 !important;
6412
+ padding-right: $gl-spacing-scale-7 !important;
6413
+ }
6414
+ }
6403
6415
  .gl-lg-pt-0 {
6404
6416
  @include gl-media-breakpoint-up(lg) {
6405
6417
  padding-top: 0;
@@ -1209,6 +1209,12 @@
1209
1209
  }
1210
1210
  }
1211
1211
 
1212
+ @mixin gl-md-px-7 {
1213
+ @include gl-media-breakpoint-up(md) {
1214
+ @include gl-px-7;
1215
+ }
1216
+ }
1217
+
1212
1218
  @mixin gl-lg-pt-0 {
1213
1219
  @include gl-media-breakpoint-up(lg) {
1214
1220
  @include gl-pt-0;