Skip to content

Instantly share code, notes, and snippets.

@raulghm
Created January 26, 2015 13:18
Show Gist options
  • Save raulghm/a1bb39536e4a55b2e020 to your computer and use it in GitHub Desktop.
Save raulghm/a1bb39536e4a55b2e020 to your computer and use it in GitHub Desktop.
BEM Snippet [Suit CSS]
// https://github.com/suitcss/suit/blob/master/doc/naming-conventions.md
// u-utilityName
// ComponentName
// ComponentName--modifierName
// ComponentName-descendantName
// ComponentName.is-stateOfComponent
$module: 'ComponentName';
.#{$module} {
&-descendantName {}
&--modifierName {
.#{$module}-descendantName {}
}
&.is-stateOfComponent {}
.u-utilityName {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment