Skip to content

Instantly share code, notes, and snippets.

@codingdesigner
Created November 1, 2013 21:53
Show Gist options
  • Save codingdesigner/7272547 to your computer and use it in GitHub Desktop.
Save codingdesigner/7272547 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="foo">
<h2>Hello World</h2>
</div>
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@mixin bem-el($name) {
@at-root #{&}__#{$name} {
@content;
}
}
@mixin bem-mod($name) {
@at-root #{&}--#{$name} {
@content;
}
}
.foo {
content: green;
@include bem-el(bar) {
content: red;
@include bem-mod(baz) {
content: blue;
}
}
}
.foo {
content: green;
}
.foo__bar {
content: red;
}
.foo__bar--baz {
content: blue;
}
<div class="foo">
<h2>Hello World</h2>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment