Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Last active August 29, 2015 14:05
Show Gist options
  • Save cimmanon/b03378b29ae1570217ca to your computer and use it in GitHub Desktop.
Save cimmanon/b03378b29ae1570217ca to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.1)
// Compass (v1.0.1)
// ----
%extendor
color: blue
&:hover
color: red
.something, .something-else
@extend %extendor
.something, .something-else {
color: blue;
}
.something:hover, .something-else:hover {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment