We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently css like:
.module { color: green } .another-module { color: blue } @media (max-width: 600px) { .module { background: red } .another-module { background: yellow } }
outputs
.module { color: green; background: red } .another-module { color: blue; background: yellow } @media (max-width: 600px) { }
When media selectors usually mean that the two should not be combined
expected result would be
The text was updated successfully, but these errors were encountered:
No branches or pull requests
currently css like:
outputs
When media selectors usually mean that the two should not be combined
expected result would be
The text was updated successfully, but these errors were encountered: