@gitlab/ui 42.6.0 → 42.7.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": "42.6.0",
3
+ "version": "42.7.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -5592,6 +5592,18 @@
5592
5592
  .gl-mt-7\! {
5593
5593
  margin-top: $gl-spacing-scale-7 !important;
5594
5594
  }
5595
+ .gl-mt-8 {
5596
+ margin-top: $gl-spacing-scale-8;
5597
+ }
5598
+ .gl-mt-8\! {
5599
+ margin-top: $gl-spacing-scale-8 !important;
5600
+ }
5601
+ .gl-mt-9 {
5602
+ margin-top: $gl-spacing-scale-9;
5603
+ }
5604
+ .gl-mt-9\! {
5605
+ margin-top: $gl-spacing-scale-9 !important;
5606
+ }
5595
5607
  .gl-mt-11 {
5596
5608
  margin-top: $gl-spacing-scale-11;
5597
5609
  }
@@ -5742,6 +5754,12 @@
5742
5754
  .gl-mb-8\! {
5743
5755
  margin-bottom: $gl-spacing-scale-8 !important;
5744
5756
  }
5757
+ .gl-mb-9 {
5758
+ margin-bottom: $gl-spacing-scale-9;
5759
+ }
5760
+ .gl-mb-9\! {
5761
+ margin-bottom: $gl-spacing-scale-9 !important;
5762
+ }
5745
5763
  .gl-ml-auto {
5746
5764
  margin-left: auto;
5747
5765
  }
@@ -418,6 +418,14 @@
418
418
  margin-top: $gl-spacing-scale-7;
419
419
  }
420
420
 
421
+ @mixin gl-mt-8 {
422
+ margin-top: $gl-spacing-scale-8;
423
+ }
424
+
425
+ @mixin gl-mt-9 {
426
+ margin-top: $gl-spacing-scale-9;
427
+ }
428
+
421
429
  @mixin gl-mt-11 {
422
430
  margin-top: $gl-spacing-scale-11;
423
431
  }
@@ -518,6 +526,10 @@
518
526
  margin-bottom: $gl-spacing-scale-8;
519
527
  }
520
528
 
529
+ @mixin gl-mb-9 {
530
+ margin-bottom: $gl-spacing-scale-9;
531
+ }
532
+
521
533
  @mixin gl-ml-auto {
522
534
  margin-left: auto;
523
535
  }