Skip to content

Instantly share code, notes, and snippets.

@JoeNoPhoto
Created October 14, 2015 07:12
Show Gist options
  • Save JoeNoPhoto/7a98e46f9e812e9094c5 to your computer and use it in GitHub Desktop.
Save JoeNoPhoto/7a98e46f9e812e9094c5 to your computer and use it in GitHub Desktop.
Transistions Mixin
@mixin transition($args...) {
-webkit-transition: $args;
-moz-transition: $args;
-ms-transition: $args;
-o-transition: $args;
transition: $args;
}
@JoeNoPhoto
Copy link
Author

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