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
dashedIdents
Imagine I have a button component with (complex) hover states:
.button { --accent: red; } .button:hover { border: 1px solid var(--accent); }
Now I want to create a variant of said button:
.other-button { composes: button from './button.module.css'; --accent from './button.module.css': blue; }
I can't write from '...' in the left hand side of that last line. How can I solve this?
from '...'
(Right now, this and the other two issues I filed (#753, #763) present too much of a hurdle for me to use lightningcss)
The text was updated successfully, but these errors were encountered:
I just ran into this issue too. Are there plans to implement this ?
Sorry, something went wrong.
No branches or pull requests
Imagine I have a button component with (complex) hover states:
Now I want to create a variant of said button:
I can't write
from '...'
in the left hand side of that last line. How can I solve this?(Right now, this and the other two issues I filed (#753, #763) present too much of a hurdle for me to use lightningcss)
The text was updated successfully, but these errors were encountered: