Skip to content

Instantly share code, notes, and snippets.

@drejohnson
Created June 6, 2014 06:36
Show Gist options
  • Save drejohnson/68ec46293f2b6b9637e8 to your computer and use it in GitHub Desktop.
Save drejohnson/68ec46293f2b6b9637e8 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