Skip to content

Instantly share code, notes, and snippets.

@gesteves
Created January 12, 2015 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gesteves/492ea9c3aad59f1bb090 to your computer and use it in GitHub Desktop.
Save gesteves/492ea9c3aad59f1bb090 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
}
}
.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