Skip to content

Instantly share code, notes, and snippets.

@sebastianrothbucher
Created October 20, 2018 17:42
Show Gist options
  • Save sebastianrothbucher/216361493c6dfa5e670f34d093abc426 to your computer and use it in GitHub Desktop.
Save sebastianrothbucher/216361493c6dfa5e670f34d093abc426 to your computer and use it in GitHub Desktop.
mixin magic
<div class="cls1 inner">cls1</div>
<div class="cls2 inner">cls2</div>
.m1() {
&.inner {
background: pink;
}
}
.cls1 {
.m1();
}
.m1() {
&.inner { // MAGIC!
background: blue;
color: yellow;
}
}
.cls2 {
.m1();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment