Skip to content

Instantly share code, notes, and snippets.

@evanre
Last active January 25, 2016 17:52
Show Gist options
  • Save evanre/6c3a6704b251408a923a to your computer and use it in GitHub Desktop.
Save evanre/6c3a6704b251408a923a to your computer and use it in GitHub Desktop.
Mixin that extends all action states :hover, :active, :focus (SASS, SCSS)
// Extends all action states :hover, :active, :focus.
@mixin superhover {
&:hover,
&:active,
&:focus {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment