Skip to content

Instantly share code, notes, and snippets.

@joshuatuscan
Created March 11, 2013 21:05
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 joshuatuscan/5137743 to your computer and use it in GitHub Desktop.
Save joshuatuscan/5137743 to your computer and use it in GitHub Desktop.
border radius all mixin
@mixin rounded-corners-all($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
border-radius: $radius;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment