Skip to content

Instantly share code, notes, and snippets.

@sturobson
Created February 8, 2014 12:12
Show Gist options
  • Save sturobson/8882732 to your computer and use it in GitHub Desktop.
Save sturobson/8882732 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.3)
// Compass (v1.0.0.alpha.18)
// ----
.foo, .bar {
&__element {
color: blue;
&--modifier {
color: red;
}
}
}
.baz {
position: relative;
width: 50%;
&__element {
color: red;
&--modifier {
color: blue;
text-decoration: underline;
}
}
}
.foo__element, .bar__element {
color: blue;
}
.foo__element--modifier, .bar__element--modifier {
color: red;
}
.baz {
position: relative;
width: 50%;
}
.baz__element {
color: red;
}
.baz__element--modifier {
color: blue;
text-decoration: underline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment