Skip to content

Commit 9198e90

Browse files
committed
Merge branch 'v4-dev' of https://github.com/coreui/coreui into v4-dev
2 parents b52ac5c + d96aa5b commit 9198e90

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

scss/_utilities.scss

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -93,42 +93,42 @@ $utilities: map-merge(
9393
"border": (
9494
property: border,
9595
values: (
96-
null: $border-width solid $border-color,
96+
null: $border-width solid $var(--#{$variable-prefix}border-color, $border-color),
9797
0: 0,
9898
),
9999
),
100100
"border-top": (
101101
property: border-top,
102102
values: (
103-
null: $border-width solid $border-color,
103+
null: $border-width solid $var(--#{$variable-prefix}border-color, $border-color),
104104
0: 0,
105105
)
106106
),
107107
"border-end": (
108108
property: border-right,
109109
class: border-end,
110110
values: (
111-
null: $border-width solid $border-color,
111+
null: $border-width solid $var(--#{$variable-prefix}border-color, $border-color),
112112
0: 0,
113113
)
114114
),
115115
"border-bottom": (
116116
property: border-bottom,
117117
values: (
118-
null: $border-width solid $border-color,
118+
null: $border-width solid $var(--#{$variable-prefix}border-color, $border-color),
119119
0: 0,
120120
)
121121
),
122122
"border-start": (
123123
property: border-left,
124124
class: border-start,
125125
values: (
126-
null: $border-width solid $border-color,
126+
null: $border-width solid $var(--#{$variable-prefix}border-color, $border-color),
127127
0: 0,
128128
)
129129
),
130-
"border-color": (
131-
property: border-color,
130+
"var(--#{$variable-prefix}border-color, $border-color)": (
131+
property: var(--#{$variable-prefix}border-color, $border-color),
132132
class: border,
133133
values: map-merge($theme-colors, ("white": $white))
134134
),

0 commit comments

Comments
 (0)