Created
December 22, 2015 07:43
-
-
Save toruta39/fdab00e1479348a95a62 to your computer and use it in GitHub Desktop.
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
@mixin e($element) { | |
@at-root { | |
#{&}__#{$element} { | |
@content; | |
} | |
} | |
} | |
@mixin m($modifier) { | |
@at-root { | |
#{&}--#{$modifier} { | |
@content; | |
} | |
} | |
} | |
.category-header { | |
position: relative; | |
@include e(icon){ | |
position: relative; | |
@include m(red) { | |
color: red; | |
} | |
} | |
@include m(red) { | |
color: red; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment