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
Did something change regarding the compilation of negative variables?
In v0.14.0 this:
.foo { --width: 100px; with: -var(--width); }
used to output:
.foo { with: -100px; }
But after updating to v0.17.0 I get:
.foo { with: -var(--width); }
I tried reproducing in the playground, but this still runs on v0.14.0.
The text was updated successfully, but these errors were encountered:
Looking at the changelog, this probably broke in v0.15.0 where there were some changes around the regex and balanced matching.
v0.15.0
Here is the relevant PR #112
cc @Poetro
Sorry, something went wrong.
No branches or pull requests
Did something change regarding the compilation of negative variables?
In v0.14.0 this:
used to output:
But after updating to v0.17.0 I get:
I tried reproducing in the playground, but this still runs on v0.14.0.
The text was updated successfully, but these errors were encountered: