Skip to content

Instantly share code, notes, and snippets.

@lozandier
Created November 14, 2015 17:26
Show Gist options
  • Save lozandier/5973fa48cf5e711f3cc3 to your computer and use it in GitHub Desktop.
Save lozandier/5973fa48cf5e711f3cc3 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@mixin rotate($val) {
-ms-transform: rotate(#{$val}deg);
transform: rotate(#{$val}deg);
}
.foo {
@include rotate(90)
}
.foo {
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment