Skip to content

Instantly share code, notes, and snippets.

@roytomeij
Created July 26, 2013 07:25
Show Gist options
  • Save roytomeij/6086943 to your computer and use it in GitHub Desktop.
Save roytomeij/6086943 to your computer and use it in GitHub Desktop.
@mixin border-radius($radius) {
border-radius: $radius;
}
.foo {
@include border-radius(5px);
}
.bar {
@include border-radius(7px);
}
.baz {
@include border-radius(9px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment