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
LibSass currently allows imports to be nested in control directives as long as they're also nested within style rules. For example:
@if true { a {@import 'foo'} }
This is invalid Sass and should produce an error. Note that the following does produce an error:
@if true { @import 'foo'; }
The text was updated successfully, but these errors were encountered:
Any progress on this one?
Sorry, something went wrong.
No branches or pull requests
LibSass currently allows imports to be nested in control directives as long as they're also nested within style rules. For example:
This is invalid Sass and should produce an error. Note that the following does produce an error:
The text was updated successfully, but these errors were encountered: