sendou.ink/app/components/Avatar.module.css
Kalle fef1ffc955
Design refresh + a bunch of stuff (#2864)
Co-authored-by: hfcRed <hfcred@gmx.net>
2026-03-19 17:51:42 +02:00

22 lines
314 B
CSS

.identicon {
filter: blur(99px);
transition: filter 0.3s;
}
.loaded {
filter: blur(0);
}
.avatarWrapper {
flex-shrink: 0;
width: fit-content;
height: fit-content;
background-color: var(--color-bg-higher);
border-radius: var(--radius-avatar);
overflow: hidden;
}
.avatarWrapper img {
display: block;
}