Created
July 19, 2016 12:32
-
-
Save kovtunos/d3e64b84202aa051bcadc1a4366e32ca to your computer and use it in GitHub Desktop.
Image circle #mixin
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
// Image circle. | |
// | |
// Usage: | |
// @include image-circle(125px) | |
// @include image-circle(125px, 5px, #bebebe) | |
@mixin image-circle($width, $border-width: null, $border-color: null) { | |
margin: 0 auto; | |
width: $width; | |
img { | |
border-radius: 50%; | |
@if ($border-width) { | |
border: $border-width solid $border-color; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment