Skip to content

Instantly share code, notes, and snippets.

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