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
I have SASS file with variables injected as CSS 4 variables values, and they're not replaced by the compilation.
$test: 1.5rem; $test2: 2rem; :root { --my-var: $test; } .myClass { --my-var: $test2; }
Generated CSS from this extension:
:root { --my-var: $test; } .myClass { --my-var: $test2; }
Generated CSS from the original extension (VS 2019):
:root { --my-var: 1.5rem; } .myClass { --my-var: 2rem; }
The text was updated successfully, but these errors were encountered:
This is no longer proper SASS syntax.
Duplicate of #4
Sorry, something went wrong.
No branches or pull requests
Installed product versions
Description
I have SASS file with variables injected as CSS 4 variables values, and they're not replaced by the compilation.
Source file
Current behavior
Generated CSS from this extension:
Expected behavior
Generated CSS from the original extension (VS 2019):
The text was updated successfully, but these errors were encountered: