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
Here is an issue: There is a test fixture called test/fixtures/js-defined-preserve-injected.css
test/fixtures/js-defined-preserve-injected.css
.box1 { width: var(--js-defined1); height: var(--js-defined2); background: var(--js-defined-no-prefix); }
With an output in test/fixtures/js-defined-preserve-injected.expected.css
test/fixtures/js-defined-preserve-injected.expected.css
:root { } :root { } :root { } :root { } .box1 { width: 75px; width: var(--js-defined1); height: 80px; height: var(--js-defined2); background: #ff0000; background: var(--js-defined-no-prefix); }
I'd say that these duplicating :roots are not very useful for any purpose and must be removed from the output.
:root
What do you think?
The text was updated successfully, but these errors were encountered:
Related to #89
It would be nice if they were not in the output. PR welcome to fix it.
Sorry, something went wrong.
No branches or pull requests
Here is an issue:
There is a test fixture called
test/fixtures/js-defined-preserve-injected.css
With an output in
test/fixtures/js-defined-preserve-injected.expected.css
I'd say that these duplicating
:root
s are not very useful for any purpose and must be removed from the output.What do you think?
The text was updated successfully, but these errors were encountered: