Created
January 12, 2015 21:02
-
-
Save gesteves/492ea9c3aad59f1bb090 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
// ---- | |
// Sass (v3.4.9) | |
// Compass (v1.0.1) | |
// ---- | |
$m : '.m-foo'; | |
// Currently | |
#{$m} { | |
color: blue; | |
#{$m}__bar { | |
color: red; | |
} | |
} | |
// With Sass 3.4 | |
#{$m} { | |
color: blue; | |
&__bar { | |
color: red; | |
&-baz { | |
color: green; | |
} | |
} | |
} |
This file contains hidden or 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
.m-foo { | |
color: blue; | |
} | |
.m-foo .m-foo__bar { | |
color: red; | |
} | |
.m-foo { | |
color: blue; | |
} | |
.m-foo__bar { | |
color: red; | |
} | |
.m-foo__bar-baz { | |
color: green; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment