Fix invalid CSS selector syntax (#2303)
https://jigsaw.w3.org/css-validator/ complains that "The selector :empty can't appear after the pseudo-element selector ::after". Switching their places, however, will validate.
This commit is contained in:
parent
f016a367b5
commit
fc85a63af4
@ -36,7 +36,7 @@
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
&::after:empty {
|
||||
&:empty::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user