Skip to content

Instantly share code, notes, and snippets.

@hellatan
Created April 19, 2014 20:53
Show Gist options
  • Save hellatan/11097199 to your computer and use it in GitHub Desktop.
Save hellatan/11097199 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v0.7.0)
// ----
%holder {
color: green;
&:hover {
color: red;
}
}
.class-1 {
@extend %holder;
}
.class-2 {
@extend .class-1;
}
.class-1, .class-2 {
color: green; }
.class-1:hover, .class-2:hover {
color: red; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment