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: 1; $interpolation: #{$variable}px; div { top: -$interpolation; }
Expected (3.3.5 and 3.2.19) output:
div { top: -1px; }
libsass output:
div { top: -$interpolation; }
The text was updated successfully, but these errors were encountered:
It's a hack, but the following works
$variable: 1; $interpolation: #{$variable}px; div { top: unquote("" -$interpolation); }
Converts it to a string, and then unquotes the value
Sorry, something went wrong.
This is definitely an error I've seen and we need to fix it. This is a very clean test case!
Merge pull request #76 from malrase/issue_344
6034041
Adding test case for sass/libsass#344 where interpolation doesn't work ...
Successfully merging a pull request may close this issue.
Expected (3.3.5 and 3.2.19) output:
libsass output:
The text was updated successfully, but these errors were encountered: