Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Created July 23, 2014 08:54
Show Gist options
  • Save fieldoffice/86c5362e7b8d2c433f0c to your computer and use it in GitHub Desktop.
Save fieldoffice/86c5362e7b8d2c433f0c to your computer and use it in GitHub Desktop.
Sass Transition Mixin
@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