Skip to content

Instantly share code, notes, and snippets.

@djGrill
Created March 16, 2013 07:22
Show Gist options
  • Save djGrill/5175376 to your computer and use it in GitHub Desktop.
Save djGrill/5175376 to your computer and use it in GitHub Desktop.
Example for using Sass Mixins
@mixin border-radius($value) {
-webkit-border-radius: $value;
-moz-border-radius: $value;
border-radius: $value;
}
div {
@include border-radius(10px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment