Skip to content

Instantly share code, notes, and snippets.

@bleuebuzz
Created November 10, 2014 16:05
Show Gist options
  • Save bleuebuzz/ed83f656202b045b3282 to your computer and use it in GitHub Desktop.
Save bleuebuzz/ed83f656202b045b3282 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
%placeholder {
foo: bar;
&:first-child {
first: child;
}
}
.class {
@extend %placeholder;
&.sub-class {
@extend %placeholder; // no output, but I may need this specificity
}
}
.class, .class.sub-class {
foo: bar;
}
.class:first-child {
first: child;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment