mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
22 lines
314 B
CSS
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;
|
|
}
|