mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-06-23 13:04:44 -05:00
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".
13 lines
210 B
CSS
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;
|
|
}
|
|
}
|