fleet/frontend/components/Avatar/_styles.scss
2023-02-01 13:06:06 -06:00

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;
}
}
}