Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Last active June 25, 2019 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ScarletPonytail/5be0d5a43c12b7bbb0d34b1012643725 to your computer and use it in GitHub Desktop.
Save ScarletPonytail/5be0d5a43c12b7bbb0d34b1012643725 to your computer and use it in GitHub Desktop.
// Multi-use?
@mixin ease {
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
a {
@include ease;
}
/* Only using once? */
a {
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment