Skip to content

Instantly share code, notes, and snippets.

@glynrob
Created July 14, 2013 22:06
Show Gist options
  • Save glynrob/5996316 to your computer and use it in GitHub Desktop.
Save glynrob/5996316 to your computer and use it in GitHub Desktop.
SCSS Mixins
@mixin border-radius ($radius: 5px) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
border-radius: $radius;
}
.btn{
@include border-radius(10px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment