mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
26 lines
331 B
SCSS
26 lines
331 B
SCSS
.avatar {
|
|
@include size(120px);
|
|
display: block;
|
|
background-size: cover;
|
|
border-radius: 50%;
|
|
|
|
&--small {
|
|
@include size(32px);
|
|
}
|
|
|
|
&--xsmall {
|
|
@include size(16px);
|
|
}
|
|
|
|
&.has-white-background {
|
|
background: $core-white;
|
|
border-radius: 100%;
|
|
}
|
|
|
|
img {
|
|
&.default {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|