Created
December 18, 2013 18:51
-
-
Save vic3256/8027682 to your computer and use it in GitHub Desktop.
sass mixin for css circle shape
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin circle($size){ | |
width: $size; | |
height: $size; | |
border-radius: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment