Created
June 30, 2015 08:33
-
-
Save hagenburger/1ea1287c028efb70c95a to your computer and use it in GitHub Desktop.
LibSass interpolation bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$name: "world"; | |
// works: | |
.#{$name} { | |
test: test; | |
} | |
// fails: | |
.-#{$name} { | |
test: test; | |
} | |
// workaround: | |
.#{"-" + $name} { | |
test: test; | |
} | |
// works: | |
.hello-#{$name} { | |
test: test; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment