You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 6, 2021. It is now read-only.
Hello there, we encountered a bug with @media print queries:
This works perfectly:
@media (max-width:360px){ .test{ top : 230px; } } @media print{ }This breaks:
@media (max-width:360px){ } @media print{ .test{ top : 230px; } }With this rigged output:
[ { "selector": "@media (max-width:360px)", "type": "media", "subStyles": [ { "selector": "}\n@media print", "type": "media", "subStyles": [] } ] } ]