Skip to content

Instantly share code, notes, and snippets.

@tdreyno
Created May 24, 2013 18:46
Show Gist options
  • Save tdreyno/5645668 to your computer and use it in GitHub Desktop.
Save tdreyno/5645668 to your computer and use it in GitHub Desktop.
@mixin hoverable {
.hover &:hover {
@content;
}
}
#elem {
@include hoverable {
font-weight: bold;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment