Skip to content

Instantly share code, notes, and snippets.

@danielcgold
Created April 24, 2013 15:09
Show Gist options
  • Save danielcgold/5452867 to your computer and use it in GitHub Desktop.
Save danielcgold/5452867 to your computer and use it in GitHub Desktop.
Create a simple circle with Sass
/* Use: @include circle(1em); */
@mixin circle($size) {
width: $size; height: $size; @include border-radius($size/2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment