@gitlab/ui 66.1.0 → 66.2.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.1.0",
3
+ "version": "66.2.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -6435,6 +6435,12 @@
6435
6435
  .gl-mb-8\! {
6436
6436
  margin-bottom: $gl-spacing-scale-8 !important;
6437
6437
  }
6438
+ .gl-mb-n8 {
6439
+ margin-bottom: -$gl-spacing-scale-8;
6440
+ }
6441
+ .gl-mb-n8\! {
6442
+ margin-bottom: -$gl-spacing-scale-8 !important;
6443
+ }
6438
6444
  .gl-mb-9 {
6439
6445
  margin-bottom: $gl-spacing-scale-9;
6440
6446
  }
@@ -591,6 +591,10 @@
591
591
  margin-bottom: $gl-spacing-scale-8;
592
592
  }
593
593
 
594
+ @mixin gl-mb-n8 {
595
+ margin-bottom: -$gl-spacing-scale-8;
596
+ }
597
+
594
598
  @mixin gl-mb-9 {
595
599
  margin-bottom: $gl-spacing-scale-9;
596
600
  }