@gitlab/ui 32.67.0 → 32.68.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/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +1 -1
- package/scss_to_js/scss_variables.js +1 -0
- package/scss_to_js/scss_variables.json +5 -0
- package/src/scss/utilities.scss +8 -0
- package/src/scss/utility-mixins/sizing.scss +4 -0
- package/src/scss/variables.scss +1 -0
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@ export const glSpacingScale13 = '6rem'
|
|
|
16
16
|
export const glSpacingScale15 = '7.5rem'
|
|
17
17
|
export const glSpacingScale20 = '10rem'
|
|
18
18
|
export const glSpacingScale26 = '13rem'
|
|
19
|
+
export const glSpacingScale28 = '14rem'
|
|
19
20
|
export const glSpacingScale62 = '31rem'
|
|
20
21
|
export const breakpointSm = '576px'
|
|
21
22
|
export const breakpointMd = '768px'
|
package/src/scss/utilities.scss
CHANGED
|
@@ -3967,6 +3967,14 @@
|
|
|
3967
3967
|
width: $gl-spacing-scale-20 !important;
|
|
3968
3968
|
}
|
|
3969
3969
|
|
|
3970
|
+
.gl-w-28 {
|
|
3971
|
+
width: $gl-spacing-scale-28;
|
|
3972
|
+
}
|
|
3973
|
+
|
|
3974
|
+
.gl-w-28\! {
|
|
3975
|
+
width: $gl-spacing-scale-28 !important;
|
|
3976
|
+
}
|
|
3977
|
+
|
|
3970
3978
|
.gl-w-eighth {
|
|
3971
3979
|
width: 12.5%;
|
|
3972
3980
|
}
|
package/src/scss/variables.scss
CHANGED
|
@@ -19,6 +19,7 @@ $gl-spacing-scale-13: 12 * $grid-size;
|
|
|
19
19
|
$gl-spacing-scale-15: 15 * $grid-size;
|
|
20
20
|
$gl-spacing-scale-20: 20 * $grid-size;
|
|
21
21
|
$gl-spacing-scale-26: 26 * $grid-size;
|
|
22
|
+
$gl-spacing-scale-28: 28 * $grid-size;
|
|
22
23
|
$gl-spacing-scale-62: 62 * $grid-size;
|
|
23
24
|
|
|
24
25
|
// Responsive breakpoints
|