Skip to content

Instantly share code, notes, and snippets.

@schrags08
Created June 16, 2015 14:39
Show Gist options
  • Save schrags08/46d71fb41ced0a66128c to your computer and use it in GitHub Desktop.
Save schrags08/46d71fb41ced0a66128c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
//Mixins
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
border-radius: $radius;
}
.box { @include border-radius(10px); }
.box {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
border-radius: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment