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
If I interpolate a list variable in a selector, can you expand it into multiple selectors when nesting?
For example:
Source
@tags: a, b, code, dd; @{tags} { &:hover { color: red; } }
Current Output
a, b, code, dd:hover { color: red; }
Desired Output
a:hover, b:hover, code:hover, dd:hover { color: red; }
The text was updated successfully, but these errors were encountered:
See #1421 (also #1694 and other issues linked there).
Sorry, something went wrong.
Closing as duplicate of #1421.
No branches or pull requests
If I interpolate a list variable in a selector, can you expand it into multiple selectors when nesting?
For example:
Source
Current Output
Desired Output
The text was updated successfully, but these errors were encountered: