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
The following results in an invalid property name error.
invalid property name
$foo: "bar"; %#{"foo--#{$foo}"} { foo: bar; } a { @extend %foo--bar; }
I suspect this is partly responsible for #439 as well.
Specs added sass/sass-spec#123.
The text was updated successfully, but these errors were encountered:
Isn't this an interpolation inside an interpolation? The following works as far as I can tell
$foo: "bar"; %foo--#{$foo} { foo: bar; } a { @extend %foo--bar; }
Sorry, something went wrong.
Yeah it essentially boils down to interpolation inside an interpolation. Updated the issue title accordingly. FTR this also works
$foo: "bar"; %#{"foo--" + $foo} { foo: bar; } a { @extend %foo--bar; }
Created a pull request for this:
#854
This should be solved by #910!
mgreter
No branches or pull requests
The following results in an
invalid property name
error.I suspect this is partly responsible for #439 as well.
Specs added sass/sass-spec#123.
The text was updated successfully, but these errors were encountered: