Skip to content

Instantly share code, notes, and snippets.

@simple17
Created April 6, 2020 16:33
Show Gist options
  • Save simple17/7eb99f74f81492c05ca0af03b7838f9a to your computer and use it in GitHub Desktop.
Save simple17/7eb99f74f81492c05ca0af03b7838f9a to your computer and use it in GitHub Desktop.
[SCSS BEM mofifiers] #BEM #SASS #SCSS
.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