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:
Björn Brändewall 2021-08-24 14:28:02 +02:00 committed by Sam Potts
parent f016a367b5
commit fc85a63af4

View File

@ -36,7 +36,7 @@
z-index: 3;
}
&::after:empty {
&:empty::after {
display: none;
}
}