Created
May 29, 2014 21:55
-
-
Save davidpett/4e94686b5cef7640b5da to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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 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