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
There are several issues related to the custom at-rule nesting (#81, #124, #123). This issue is to fix the below general behaviour:
Example 1 (bubbling up custom childless at-rules):
@media screen { .two { @mixin test } }
Expected output:
Actual output:
@media screen { @mixin test; }
Example 2 (bubbling up all at-rules, ignoring the option setting):
@media screen { .three { @mixin test { color: black } } }
@media screen { @mixin test { .three { color: black } } }
The text was updated successfully, but these errors were encountered:
Thanks. Released in 5.0.6.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
There are several issues related to the custom at-rule nesting (#81, #124, #123). This issue is to fix the below general behaviour:
Example 1 (bubbling up custom childless at-rules):
Expected output:
Actual output:
Example 2 (bubbling up all at-rules, ignoring the option setting):
Expected output:
Actual output:
The text was updated successfully, but these errors were encountered: