Created
July 23, 2014 08:54
-
-
Save fieldoffice/86c5362e7b8d2c433f0c to your computer and use it in GitHub Desktop.
Sass Transition Mixin
This file contains hidden or 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
@mixin transition($args...) { | |
-webkit-transition: $args; | |
-moz-transition: $args; | |
-ms-transition: $args; | |
transition: $args; | |
} | |
a { | |
color:$color; | |
@include transition(color .3s ease); | |
&:hover { | |
color:$color; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment