Created
April 6, 2020 16:33
-
-
Save simple17/7eb99f74f81492c05ca0af03b7838f9a to your computer and use it in GitHub Desktop.
[SCSS BEM mofifiers] #BEM #SASS #SCSS
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
.block { | |
display: block; | |
&__element { | |
display: inline; | |
&--m1 { | |
background-color: red; | |
} | |
&--m2 { | |
background-color: green; | |
} | |
// Correct! | |
&--m1#{&}--m2 { | |
background-color: yellow; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment