Skip to content

Instantly share code, notes, and snippets.

@iamcarrico
Created August 22, 2014 15:11
Show Gist options
  • Select an option

  • Save iamcarrico/2b03d5880682277cb495 to your computer and use it in GitHub Desktop.

Select an option

Save iamcarrico/2b03d5880682277cb495 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.0)
// Compass (v1.0.0)
// ----
%extended {
color: blue;
&:first-child {
color: red;
}
}
.button {
//@extend %extended;
&:hover {
@extend %extended;
}
}
.button:hover {
color: blue;
}
.button:first-child:hover {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment