Skip to content

Instantly share code, notes, and snippets.

@toruta39
Created December 22, 2015 07:43
Show Gist options
  • Save toruta39/fdab00e1479348a95a62 to your computer and use it in GitHub Desktop.
Save toruta39/fdab00e1479348a95a62 to your computer and use it in GitHub Desktop.
@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