Skip to content

Instantly share code, notes, and snippets.

@JoeNoPhoto
Created October 18, 2015 19:16
Show Gist options
  • Save JoeNoPhoto/3ec7627e823cd26e8f46 to your computer and use it in GitHub Desktop.
Save JoeNoPhoto/3ec7627e823cd26e8f46 to your computer and use it in GitHub Desktop.
RoundedCorner Mixin
@mixin roundedCorners($size){
-webkit-border-radius: $size + px;
-moz-border-radius: $size + px;
border-radius: $size + px;
}
// Usage:
.button{
@include roundedCorners(10);
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment