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
:root
:root { --red: red; } p { color: var(--blue); }
should be:
:root { --red: red; --blue: blue; } p { color: var(--blue); }
not:
:root { --red: red; } :root { --blue: blue; } p { color: var(--blue); }
The text was updated successfully, but these errors were encountered:
improvement: merge :root rules, implements GoogleChromeLabs#16
831104a
No branches or pull requests
:root
is in the stylesheet already or not:root
has props already before injectingshould be:
not:
The text was updated successfully, but these errors were encountered: