Skip to content

Instantly share code, notes, and snippets.

@jensgro
Created August 29, 2014 06:11
Show Gist options
  • Save jensgro/4500fcde27d6550b2731 to your computer and use it in GitHub Desktop.
Save jensgro/4500fcde27d6550b2731 to your computer and use it in GitHub Desktop.
Easy BEMing with Sass
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
.block {
&__element {
color: red;
}
&--modifier {
colr: blue;
}
}
.block__element {
color: red;
}
.block--modifier {
colr: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment