Skip to content

Instantly share code, notes, and snippets.

@jdsteinbach
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save jdsteinbach/c866e91f79a34c022a00 to your computer and use it in GitHub Desktop.

Select an option

Save jdsteinbach/c866e91f79a34c022a00 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.0)
// ----
%placeholder {
color: red;
@media (min-width: 500px) {
color: blue;
}
.parent & {
color: orange;
}
}
.selector {
@extend %placeholder;
}
.nested .selector {
@extend %placeholder;
}
.selector, .nested .selector {
color: red; }
@media (min-width: 500px) {
.selector, .nested .selector {
color: blue; } }
.parent .selector {
color: orange; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment