Skip to content

Instantly share code, notes, and snippets.

@tacamy
Created May 22, 2015 09:56
Show Gist options
  • Save tacamy/6fb3a5ed505c420d9bd7 to your computer and use it in GitHub Desktop.
Save tacamy/6fb3a5ed505c420d9bd7 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
.block
color: red
&__element
color: yellow
&--modifier
color: blue
.block__element
color: green
.block {
color: red;
}
.block__element {
color: yellow;
}
.block--modifier {
color: blue;
}
.block--modifier .block__element {
color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment