Created
December 19, 2014 14:06
-
-
Save zachwills/86efda59469c070606da to your computer and use it in GitHub Desktop.
Hover mixin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ========================================================================== | |
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