Skip to content

Instantly share code, notes, and snippets.

@sajhd
Created September 2, 2015 15:42
Show Gist options
  • Select an option

  • Save sajhd/28d0d3954f8a81da5f9a to your computer and use it in GitHub Desktop.

Select an option

Save sajhd/28d0d3954f8a81da5f9a to your computer and use it in GitHub Desktop.
@mixin transition($args...) {
-webkit-transition: $args;
-moz-transition: $args;
-ms-transition: $args;
-o-transition: $args;
transition: $args;
}
/*
Usage
a {
color: gray;
@include transition(color .3s ease);
&:hover {
color: black;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment