Last active
January 25, 2016 17:52
-
-
Save evanre/6c3a6704b251408a923a to your computer and use it in GitHub Desktop.
Mixin that extends all action states :hover, :active, :focus (SASS, SCSS)
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
// 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