1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-30 16:50:00 +02:00

Replace instances of Sass vars for CSS variable versions of border-color and border-width

This commit is contained in:
Mark Otto
2022-02-25 14:55:47 -08:00
committed by Mark Otto
parent c1ab3eccd7
commit efc5914667
4 changed files with 25 additions and 24 deletions

View File

@@ -194,7 +194,7 @@
width: 10rem;
color: $gray-600;
background-color: $gray-100;
border: $border-width solid $border-color;
border: var(--#{$variable-prefix}border-width) solid var(--#{$variable-prefix}border-color);
> div {
display: flex;
@@ -265,7 +265,7 @@
.bd-example-border-utils-0 {
[class^="border"] {
border: 1px solid $border-color;
border: var(--#{$variable-prefix}border-width) solid var(--#{$variable-prefix}border-color);
}
}