Skip to content

Instantly share code, notes, and snippets.

@pixelchar
Last active December 22, 2015 23:59
Show Gist options
  • Save pixelchar/6550514 to your computer and use it in GitHub Desktop.
Save pixelchar/6550514 to your computer and use it in GitHub Desktop.
Sass rotate mixin to avoid writing vendor prefixes
@mixin rotate(@deg) {
-webkit-transform: rotate(@deg);
-moz-transform: rotate(@deg);
-ms-transform: rotate(@deg);
-o-transform: rotate(@deg);
transform: rotate(@deg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment