Skip to content

Instantly share code, notes, and snippets.

@zoxon
Created September 18, 2018 10:12
Show Gist options
  • Save zoxon/34716368ac23e46ad0360da4662c1dac to your computer and use it in GitHub Desktop.
Save zoxon/34716368ac23e46ad0360da4662c1dac to your computer and use it in GitHub Desktop.
BEM and SCSS (SASS)
block {
$root: &; // save parent
&__element {
color: blue;
}
&_is_active {
#{$root}__element {
color: red;
}
}
}
// =>
// .block__element {
// color: blue;
// }
// .block_is_active .block__element {
// color: red;
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment