mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 20:48:35 +00:00
25 lines
331 B
SCSS
25 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;
|
|
}
|
|
}
|
|
}
|