Last active
June 3, 2016 07:12
-
-
Save gaboratorium/192229d5a1c0c87371efe937443bb395 to your computer and use it in GitHub Desktop.
BEM naming convention in CSS #bem #css #sass
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
// Search UI Block | |
.search { | |
// Elements | |
> .search__field { | |
/* ... */ | |
} | |
> .search__btn { | |
/* ... */ | |
} | |
//Modifiers | |
&.search--condensed { | |
/* ... */ | |
} | |
&.search--compact { | |
/* ... */ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment