@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/CHANGELOG.md +7 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +1 -1
- package/src/components/base/form/form_checkbox/form_checkbox.scss +4 -0
- package/src/scss/utilities.scss +8 -0
- package/src/scss/utility-mixins/position.scss +4 -0
package/package.json
CHANGED
|
@@ -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 {
|
package/src/scss/utilities.scss
CHANGED
|
@@ -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
|
}
|