Skip to content

Instantly share code, notes, and snippets.

@fazanki
fazanki / _bem.scss
Last active August 29, 2015 14:26 — forked from simmo/_bem.scss
Sass: BEM Mixins
$bem-element-separator: '__' !default;
$bem-modifier-separator: '--' !default;
// BEM: Block (New)
@mixin new($name, $description) {
/**
* #{$name}
* #{$description}
*/
.#{$name} {