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
Minimal repro:
%not { color: red; } .not { @extend %not; } div:not(%not) { color: black; }
CSS output:
.not { color: red; } div:not(%not) { color: black; }
Expected output:
.not { color: red; } div:not(.not) { color: black; }
It works as expected using Ruby version.
The text was updated successfully, but these errors were encountered:
Thanks for the report @andreev-artem. I can confirm this is an issue in 3.3.2.
Sorry, something went wrong.
extend
Activate specs for issue 1797
ad53ff2
This PR activates specs for sass/libsass#1797
Spec added and activated in sass/sass-spec#690
f54d7a6
mgreter
No branches or pull requests
Minimal repro:
CSS output:
Expected output:
It works as expected using Ruby version.
The text was updated successfully, but these errors were encountered: