Last active
June 6, 2017 09:24
-
-
Save whatjackhasmade/e0c41598a514ddccce34233ee2aa9224 to your computer and use it in GitHub Desktop.
Mixin - Active States
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
/*///////////////////////////////////////// | |
/// ACTIVE STATES | |
*///////////////////////////////////////// | |
@mixin active-states() { | |
&:hover, | |
&:focus, | |
&:active { @content } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment