Skip to content

Instantly share code, notes, and snippets.

@pixelchar
Last active December 22, 2015 23:59
Show Gist options
  • Select an option

  • Save pixelchar/6550715 to your computer and use it in GitHub Desktop.

Select an option

Save pixelchar/6550715 to your computer and use it in GitHub Desktop.
Sass transition mixin to avoid writing vendor prefixes
@mixin transition(@string: all 0.3s ease-out) {
-webkit-transition: @string;
-moz-transition: @string;
-ms-transition: @string;
-o-transition: @string;
transition: @string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment