Skip to content

Instantly share code, notes, and snippets.

@joshuarule
Last active August 29, 2015 14:10
Show Gist options
  • Save joshuarule/dcb4a0c95e304eacc2b4 to your computer and use it in GitHub Desktop.
Save joshuarule/dcb4a0c95e304eacc2b4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
%flush {
color: red;
}
@mixin flush {
color: blue;
}
// extending the placeholder :)
.hero {
@extend %flush;
@include flush;
}
img {
@extend %flush;
@include flush;
}
.hero, img {
color: red;
}
.hero {
color: blue;
}
img {
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment