Created
May 29, 2015 11:16
-
-
Save callum/0a2f97fcec69cc6f0407 to your computer and use it in GitHub Desktop.
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
// no | |
.app-header {} | |
.app-header__nav {} | |
.app-header__nav__list {} | |
.app-header__nav__item {} | |
.app-header__nav__item__title {} | |
// yes | |
.app-header {} | |
.app-header__nav {} | |
.app-header__list {} | |
.app-header__item {} | |
.app-header__title {} | |
// yes (as modules get complex and name conflicts become more likely) | |
.app-header {} | |
.app-header__nav {} | |
.app-header__nav-list {} | |
.app-header__nav-item {} | |
.app-header__nav-item-title {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment