Skip to content

Instantly share code, notes, and snippets.

@jasonkmccoy
Created March 14, 2015 20:55
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 jasonkmccoy/ce8caf003244df810459 to your computer and use it in GitHub Desktop.
Save jasonkmccoy/ce8caf003244df810459 to your computer and use it in GitHub Desktop.
Border-radius Mixin
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
border-radius: $radius;
}
// Usage
.box {
@include border-radius(10px);
}
@jasonkmccoy
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment