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
input.scss (same error for sass syntax)
$items: 3; li { &:nth-child(#{$items}n - #{$items}) { color: red; } }
libsass 3.5.0.beta.2 and 5cfdd12
Invalid CSS after "li {": expected "}", was "&:nth-child(#{$item" on line 2 at column 5
ruby sass 4.0.0.alpha.1 and 3.4.21
li:nth-child(3n - 3) { color: red; }
version info:
$ node-sass --version node-sass 4.5.0 (Wrapper) [JavaScript] libsass 3.5.0.beta.2 (Sass Compiler) [C/C++]
without spaces works:
$items: 3; li { &:nth-child(#{$items}n-#{$items}) { color: red; } }
li:nth-child(3n-3) { color: red; }
Spec sass/sass-spec#1093
The text was updated successfully, but these errors were encountered:
Add todo spec test for libsass issue 2346
a60f0e1
sass/libsass#2346
Improve selector and binominal look ahead (sass#2346)
e9c584b
Make more permissive and allow spaces around dashes.
Merge pull request #2390 from mgreter/bugfix/issue-2346
f2f5b54
Improve selector and binominal look ahead (#2346)
This should be fixed by #2390
Sorry, something went wrong.
2c1fd97
mgreter
No branches or pull requests
input.scss (same error for sass syntax)
libsass 3.5.0.beta.2 and 5cfdd12
ruby sass 4.0.0.alpha.1 and 3.4.21
version info:
without spaces works:
libsass 3.5.0.beta.2 and 5cfdd12
Spec sass/sass-spec#1093
The text was updated successfully, but these errors were encountered: