sendou.ink/app/components/Avatar.module.css
Kalle dd5d98a243 Remove avatar loading state to avoid flicker
Original reason why it's there (by hfcRed): If you render someones icon, it exports it as an image and puts in the cache, so when you navigate and that same person appears again on the next page, it pulls the rendered image from the cache and uses that instead of a canvas

But could not reproduce any kind of "pop in".
2026-06-20 16:46:12 +03:00

13 lines
210 B
CSS

.avatarWrapper {
flex-shrink: 0;
width: fit-content;
height: fit-content;
background-color: var(--color-bg-higher);
border-radius: var(--radius-avatar);
overflow: hidden;
& img {
display: block;
}
}