@gitlab/ui 65.2.0 → 65.3.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/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +1 -1
- package/dist/tokens/js/tokens.dark.js +1 -1
- package/dist/tokens/js/tokens.js +1 -1
- package/dist/tokens/scss/_tokens.dark.scss +1 -1
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +1 -1
- package/src/scss/utilities.scss +8 -0
- package/src/scss/utility-mixins/border.scss +4 -0
package/package.json
CHANGED
package/src/scss/utilities.scss
CHANGED
|
@@ -1461,6 +1461,14 @@
|
|
|
1461
1461
|
border-left-color: $blue-600 !important;
|
|
1462
1462
|
}
|
|
1463
1463
|
|
|
1464
|
+
.gl-border-t-red-500 {
|
|
1465
|
+
border-top-color: $red-500;
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
.gl-border-t-red-500\! {
|
|
1469
|
+
border-top-color: $red-500 !important;
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1464
1472
|
.gl-border-0 {
|
|
1465
1473
|
border-width: 0;
|
|
1466
1474
|
}
|