Created
June 6, 2014 06:36
-
-
Save drejohnson/68ec46293f2b6b9637e8 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.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; | |
} | |
} | |
} |
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
.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