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
Thanks a lot for your project and the work you put into it. This is very useful!
Do you plan to support context for variables in a way similar how media queries and hover effects work?
/* Works well: */ :root { --color: blue; } a { color: var(--color); } /* => a { color: blue; } */ a:hover { --color: green; } /* => a:hover { color: green; } */
/* Not supported: */ :root { --color: blue; } a { color: var(--color); } /* => a { color: blue; } */ .my-theme { --color: red; } /* => .my-theme a { color: red; } */
The text was updated successfully, but these errors were encountered:
No plans to expand on non-explicit relationships.
But I would expect this sort of thing to work and it currently doesn't 😢 I created #55 to track it.
:root { --color: blue; } .my-theme { --color: red; } :root, .my-theme { a { color: var(--color); } }
Sorry, something went wrong.
No branches or pull requests
Thanks a lot for your project and the work you put into it. This is very useful!
Do you plan to support context for variables in a way similar how media queries and hover effects work?
Existing functionality:
New functionality:
The text was updated successfully, but these errors were encountered: