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
The CSS parser ignores empty rules and doesn't compile them, and that's great, in my opinion.
However, empty at-rules are being compiled and aren't being ignored.
For example, the following CSS code:
@media (max-width: 1024px) { }
is being unnecessarily compiled to: @media (max-width: 1024px){}
@media (max-width: 1024px){}
Besides, the following CSS code:
@media (max-width: 1024px) { div { } }
is being unnecessarily compiled to: @media (max-width: 1024px){}, too.
The text was updated successfully, but these errors were encountered:
Fix bugs
fd10f3f
Fix issues: NxtChg#7 NxtChg#8 NxtChg#10 NxtChg#11 Please let me know any improvements.
No branches or pull requests
The CSS parser ignores empty rules and doesn't compile them, and that's great, in my opinion.
However, empty at-rules are being compiled and aren't being ignored.
For example, the following CSS code:
is being unnecessarily compiled to:
@media (max-width: 1024px){}
Besides, the following CSS code:
is being unnecessarily compiled to:
@media (max-width: 1024px){}
, too.The text was updated successfully, but these errors were encountered: