Created
February 5, 2020 11:35
-
-
Save anfibiacreativa/7eca0a487f7c04338e0abdecc95a37f4 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
// Now let's talk about modifiers | |
// do! | |
.example { | |
&__wrapper { | |
&--wide { | |
// code | |
} | |
&--narrow { | |
// code | |
} | |
} | |
&__hl { | |
&--red { | |
// code | |
} | |
} | |
} | |
// don't! | |
.example { | |
&__wrapper { | |
&--info { | |
// code | |
} | |
&--firstElement { | |
// code | |
} | |
} | |
&__hl { | |
&--productTitle { | |
// code | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment