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
A regression was introduced in #800 which causes @media #{foo} to render incorrect if $foo was a media query list.
$query-string: "(min-width: 0) and (max-width: 599px), (min-width: 600px) and (max-width: 899px)"; @media #{$query-string} { .foo { content: bar; } }
expected
@media (min-width: 0) and (max-width: 599px), (min-width: 600px) and (max-width: 899px) { foo { bar: baz; } }
actual
@media (min-width: 0) and (max-width: 599px) { foo { bar: baz; } }
Specs added sass/sass-spec#223.
The text was updated successfully, but these errors were encountered:
xzyfer
Successfully merging a pull request may close this issue.
A regression was introduced in #800 which causes @media #{foo} to render incorrect if $foo was a media query list.
expected
actual
Specs added sass/sass-spec#223.
The text was updated successfully, but these errors were encountered: