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
When non-nested media query contains block comments only, that media query block are removed.
@media (min-width: 640px) { /* comment */ } div { @media (min-width: 320px) { /* comment */ } }
libsass compile result
@media (min-width: 320px) { div { /* comment */ } }
ruby-sass 3.4 compile result
@media (min-width: 640px) { /* comment */ } @media (min-width: 320px) { div { /* comment */ } }
The text was updated successfully, but these errors were encountered:
Thanks for the report @matori
Sorry, something went wrong.
Add various missing todo tests
4282ec4
sass/libsass#1889 sass/libsass#1890 sass/libsass#1898 sass/libsass#1926 sass/libsass#1930 sass/libsass#1931 sass/libsass#1960 sass/libsass#1969 sass/libsass#1977
ebad755
6f044e8
b028a8d
sass/libsass#1889 sass/libsass#1890 sass/libsass#1898 sass/libsass#1926 sass/libsass#1931 sass/libsass#1960 sass/libsass#1969 sass/libsass#1977
isPrintable
mgreter
No branches or pull requests
When non-nested media query contains block comments only, that media query block are removed.
libsass compile result
ruby-sass 3.4 compile result
The text was updated successfully, but these errors were encountered: