This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-03 02:43:37 -07:00
|
|
|
@mixin avatar-radius() {
|
2017-06-18 15:09:03 -07:00
|
|
|
border-radius: $ui-avatar-border-size;
|
2017-05-03 02:43:37 -07:00
|
|
|
background: transparent no-repeat;
|
|
|
|
background-position: 50%;
|
|
|
|
background-clip: padding-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin avatar-size($size:48px) {
|
|
|
|
width: $size;
|
|
|
|
height: $size;
|
|
|
|
background-size: $size $size;
|
|
|
|
}
|