Version 2.4.8 removes spaces in css selector when inside a media (or @supports) query:
@media screen and (-ms-high-contrast: none) {
body :focus {
outline: 2px solid #5e9ed6;
}
}
The space before : is removed and changing the selector.
@media screen and (-ms-high-contrast: none) {
body:focus {
outline: 2px solid #5e9ed6;
}
}
The space before : should not be removed.
Version 2.4.8 removes spaces in css selector when inside a media (or @supports) query:
The space before : is removed and changing the selector.
The space before : should not be removed.