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
&__
Originally reported sass/node-sass#1329.
Turns out this is valid Sass.
foo { &-- { &baz { color: red; } } }
Ruby Sass
foo--baz { color: red; }
LibSass
Error: Invalid CSS after "foo {": expected "}", was "&-- {" on line 25 of test.scss >> foo { -----^
It's worth noting that &__ compiles correctly.
foo { &__ { &baz { color: red; } } }
foo__baz { color: red; }
Spec sass/sass-spec#670
The text was updated successfully, but these errors were encountered:
Add specs for issue 1825
4b80794
This PR add specs for sass/libsass#1825
Reason why __ works, is because the following is valid
__
__ { foo: bar; }
While the following is not:
-- { foo: bar; }
Knowing that a fix should be pretty simple.
Sorry, something went wrong.
Please activate the spec @mgreter
mgreter
No branches or pull requests
Originally reported sass/node-sass#1329.
Turns out this is valid Sass.
Ruby Sass
LibSass
It's worth noting that
&__
compiles correctly.Spec sass/sass-spec#670
The text was updated successfully, but these errors were encountered: