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
Media queries with max-width are parsed incorrectly, leading to errors in page display. May affect more than just those with max-width. For example
.class3 { margin: 0; } @media (max-width: 123px) { .class1, .class2 { width: 100% !important; max-width: 100% !important; } .class3 { font-size: 80%; } }
Becomes wrongly sqwished as:
.class3{font-size:80%;margin:0}@media (max-width:123px){max-width:100%!important;.class1,.class2{width:100%!important}}
Two issues:
@media
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Media queries with max-width are parsed incorrectly, leading to errors in page display. May affect more than just those with max-width. For example
.class3 { margin: 0; } @media (max-width: 123px) { .class1, .class2 { width: 100% !important; max-width: 100% !important; } .class3 { font-size: 80%; } }
Becomes wrongly sqwished as:
.class3{font-size:80%;margin:0}@media (max-width:123px){max-width:100%!important;.class1,.class2{width:100%!important}}
Two issues:
@media
query and combined with the non-media-queried rule, where it has an effect even when it shouldn't.The text was updated successfully, but these errors were encountered: