Skip to content

Instantly share code, notes, and snippets.

@kovtunos
Created July 19, 2016 12:32
Show Gist options
  • Save kovtunos/d3e64b84202aa051bcadc1a4366e32ca to your computer and use it in GitHub Desktop.
Save kovtunos/d3e64b84202aa051bcadc1a4366e32ca to your computer and use it in GitHub Desktop.
Image circle #mixin
// 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