A Pen by Sebastian Rothbucher on CodePen.
Created
October 20, 2018 17:42
-
-
Save sebastianrothbucher/216361493c6dfa5e670f34d093abc426 to your computer and use it in GitHub Desktop.
mixin magic
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
<div class="cls1 inner">cls1</div> | |
<div class="cls2 inner">cls2</div> |
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
.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