Skip to content

Instantly share code, notes, and snippets.

@steveclarke
Created March 30, 2012 13:21
Show Gist options
  • Save steveclarke/2251507 to your computer and use it in GitHub Desktop.
Save steveclarke/2251507 to your computer and use it in GitHub Desktop.
@mixin rounded($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
border-radius: $radius;
}
div {
@include rounded(5px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment