Skip to content

Instantly share code, notes, and snippets.

@davidpett
Created May 29, 2014 21:55
Show Gist options
  • Save davidpett/4e94686b5cef7640b5da to your computer and use it in GitHub Desktop.
Save davidpett/4e94686b5cef7640b5da to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
@mixin e($name) {
@at-root &__#{$name} {
@content;
}
}
@mixin m($name) {
@at-root &--#{$name} {
@content;
}
}
.block {
color: red;
@include e(element) {
color: green;
@include m(modifier) {
color: blue;
}
}
}
.block {
color: red;
}
.block__element {
color: green;
}
.block__element--modifier {
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment