@gitlab/ui 58.7.0 → 58.8.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": "58.7.0",
3
+ "version": "58.8.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -51,12 +51,16 @@
51
51
  }
52
52
 
53
53
  &.custom-control {
54
+ @include gl-pl-5;
55
+
54
56
  .custom-control-input ~ .custom-control-label {
55
57
  @include gl-cursor-pointer;
58
+ @include gl-pl-3;
56
59
 
57
60
  &::before,
58
61
  &::after {
59
62
  @include gl-top-0;
63
+ @include gl-left-n5;
60
64
  }
61
65
 
62
66
  &::before {
@@ -4465,6 +4465,14 @@
4465
4465
  left: $gl-spacing-scale-7 !important;
4466
4466
  }
4467
4467
 
4468
+ .gl-left-n5 {
4469
+ left: -$gl-spacing-scale-5;
4470
+ }
4471
+
4472
+ .gl-left-n5\! {
4473
+ left: -$gl-spacing-scale-5 !important;
4474
+ }
4475
+
4468
4476
  .gl-left-50p {
4469
4477
  left: 50%;
4470
4478
  }
@@ -194,6 +194,10 @@
194
194
  left: $gl-spacing-scale-7;
195
195
  }
196
196
 
197
+ @mixin gl-left-n5 {
198
+ left: -$gl-spacing-scale-5;
199
+ }
200
+
197
201
  @mixin gl-left-50p {
198
202
  left: 50%;
199
203
  }