@gitlab/ui 54.0.0 → 54.1.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": "54.0.0",
3
+ "version": "54.1.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -6374,6 +6374,12 @@
6374
6374
  margin-top: #{$gl-spacing-scale-3} !important;
6375
6375
  }
6376
6376
  }
6377
+ .gl-gap-2 {
6378
+ gap: $gl-spacing-scale-2;
6379
+ }
6380
+ .gl-gap-2\! {
6381
+ gap: $gl-spacing-scale-2 !important;
6382
+ }
6377
6383
  .gl-gap-3 {
6378
6384
  gap: $gl-spacing-scale-3;
6379
6385
  }
@@ -819,6 +819,10 @@
819
819
  }
820
820
  }
821
821
 
822
+ @mixin gl-gap-2 {
823
+ gap: $gl-spacing-scale-2;
824
+ }
825
+
822
826
  @mixin gl-gap-3 {
823
827
  gap: $gl-spacing-scale-3;
824
828
  }