uglifycss icon indicating copy to clipboard operation
uglifycss copied to clipboard

Leave the space after media query `not`

Open madmurphy opened this issue 3 years ago • 2 comments

The CSS fragment

@media only screen and not (max-width:768px) {

gets minified as

@media only screen and not(max-width:768px){

However that is an error and does not work in Firefox. It should become:

@media only screen and not (max-width:768px){

--madmurphy

madmurphy avatar Apr 10 '21 19:04 madmurphy

Related: #71

FlowIT-JIT avatar Jan 24 '22 12:01 FlowIT-JIT

Any progress on this issue? The problem dates back to 2019 (see #71). Is there any known work around available, except avoid not ?

FlowIT-JIT avatar Jan 24 '22 12:01 FlowIT-JIT