Skip to content

Instantly share code, notes, and snippets.

@zachwills
Created December 19, 2014 14:06
Show Gist options
  • Save zachwills/86efda59469c070606da to your computer and use it in GitHub Desktop.
Save zachwills/86efda59469c070606da to your computer and use it in GitHub Desktop.
Hover mixin
/* ==========================================================================
Hover Mixin
========================================================================== */
/**
* Hover & active!
*/
@mixin hover() {
&:hover, &:active, &:focus {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment