Skip to content

Commit 57caf53

Browse files
committed
fix: remove $
1 parent 9198e90 commit 57caf53

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scss/_utilities.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,37 +93,37 @@ $utilities: map-merge(
9393
"border": (
9494
property: border,
9595
values: (
96-
null: $border-width solid $var(--#{$variable-prefix}border-color, $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 $var(--#{$variable-prefix}border-color, $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 $var(--#{$variable-prefix}border-color, $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 $var(--#{$variable-prefix}border-color, $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 $var(--#{$variable-prefix}border-color, $border-color),
126+
null: $border-width solid var(--#{$variable-prefix}border-color, $border-color),
127127
0: 0,
128128
)
129129
),

0 commit comments

Comments
 (0)