@gitlab/ui 32.55.0 → 32.56.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": "32.55.0",
3
+ "version": "32.56.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -5518,6 +5518,16 @@
5518
5518
  margin-left: -#{$gl-spacing-scale-6} !important;
5519
5519
  margin-right: -#{$gl-spacing-scale-6} !important;
5520
5520
  }
5521
+ .gl-gap-x-3 {
5522
+ * + * {
5523
+ margin-left: #{$gl-spacing-scale-3};
5524
+ }
5525
+ }
5526
+ .gl-gap-x-3\! {
5527
+ * + * {
5528
+ margin-left: #{$gl-spacing-scale-3} !important;
5529
+ }
5530
+ }
5521
5531
  .gl-xs-mb-3 {
5522
5532
  @include gl-media-breakpoint-down(sm) {
5523
5533
  margin-bottom: $gl-spacing-scale-3;
@@ -732,6 +732,21 @@
732
732
  margin-right: -#{$gl-spacing-scale-6};
733
733
  }
734
734
 
735
+ /**
736
+ * Gap utilities
737
+ *
738
+ * naming convention: gl-gap-{direction}-{spacing-scale-index}
739
+ * notes:
740
+ * - Utilities should strictly follow $gl-spacing-scale
741
+ * - Utilities should be refactored to use gap after dropping Safari 13.x support
742
+ */
743
+
744
+ @mixin gl-gap-x-3 {
745
+ * + * {
746
+ margin-left: #{$gl-spacing-scale-3};
747
+ }
748
+ }
749
+
735
750
  /**
736
751
  * Responsive margin utilities.
737
752
  *