@gitlab/ui 41.3.0 → 41.4.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": "41.3.0",
3
+ "version": "41.4.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -83,7 +83,7 @@
83
83
  "@babel/preset-env": "^7.10.2",
84
84
  "@gitlab/eslint-plugin": "12.3.0",
85
85
  "@gitlab/stylelint-config": "4.0.0",
86
- "@gitlab/svgs": "2.15.0",
86
+ "@gitlab/svgs": "2.16.0",
87
87
  "@rollup/plugin-commonjs": "^11.1.0",
88
88
  "@rollup/plugin-node-resolve": "^7.1.3",
89
89
  "@rollup/plugin-replace": "^2.3.2",
@@ -5734,6 +5734,12 @@
5734
5734
  .gl-ml-3\! {
5735
5735
  margin-left: $gl-spacing-scale-3 !important;
5736
5736
  }
5737
+ .gl-ml-n3 {
5738
+ margin-left: -$gl-spacing-scale-3;
5739
+ }
5740
+ .gl-ml-n3\! {
5741
+ margin-left: -$gl-spacing-scale-3 !important;
5742
+ }
5737
5743
  .gl-ml-4 {
5738
5744
  margin-left: $gl-spacing-scale-4;
5739
5745
  }
@@ -552,6 +552,10 @@
552
552
  margin-left: $gl-spacing-scale-3;
553
553
  }
554
554
 
555
+ @mixin gl-ml-n3 {
556
+ margin-left: -$gl-spacing-scale-3;
557
+ }
558
+
555
559
  @mixin gl-ml-4 {
556
560
  margin-left: $gl-spacing-scale-4;
557
561
  }