Skip to content

Commit e6e77f8

Browse files
committed
fix(scss): props.from-map color selector
1 parent 8bfebc5 commit e6e77f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/assets/scss/utils/_props.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121

2222
@if not h.contains((font-size, line-height, label), $prop) {
2323
@if (color == $prop and true == $conditional-color) {
24-
&:not(.has-text-color) {
24+
&:where(:not(.has-text-color)) {
2525
#{ $prop }: $value;
2626
}
2727
} @else if
2828
(background-color == $prop and true == $conditional-color)
2929
{
30-
&:not(.has-background) {
30+
&:where(:not(.has-background)) {
3131
#{ $prop }: $value;
3232
}
3333
} @else {

0 commit comments

Comments
 (0)