Created
November 20, 2018 22:11
-
-
Save SvenPam/84c0c47d4cc93541a21dfa22f5dfd3ed to your computer and use it in GitHub Desktop.
SASS & BEM
This file contains 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
$blockName: 'product'; | |
.#{$blockName} { | |
//... | |
&__price { | |
// ... | |
&--dicount { | |
// ... | |
} | |
} | |
} | |
// Output CSS: | |
//.product { | |
// .. | |
//} | |
//.product __price { | |
// ... | |
//} | |
//.product __price--dicount { | |
// ... | |
//} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment