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
Variable Shadowing is not supported. Variables redefined in scope don't preserve globaly defined value.
exemple :
$variable: "global value"; .content { $variable: "local value"; content: $variable; } .sidebar { content: $variable; }
should compile as follow:
.content { content: "local value"; } .sidebar { content: "global value"; }
Which is the behavior (an spec by the way) of with node sass, https://www.cssportal.com/scss-to-css/, dart-sass v1.18.0, ...
unfortunatly it "compile" like this:
.content { content: "local value"; } .sidebar { content: "local value"; }
The text was updated successfully, but these errors were encountered:
Trivial work around:
$variable: "global value";
$back: $variable; .content { $variable: "local value"; content: $variable; } $variable: $back; .sidebar { content: $variable; }
Sorry, something went wrong.
No branches or pull requests
Variable Shadowing is not supported.
Variables redefined in scope don't preserve globaly defined value.
exemple :
should compile as follow:
Which is the behavior (an spec by the way) of with node sass, https://www.cssportal.com/scss-to-css/, dart-sass v1.18.0, ...
unfortunatly it "compile" like this:
The text was updated successfully, but these errors were encountered: