mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-05 20:56:13 -05:00
23 lines
318 B
CSS
23 lines
318 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: 50%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.avatarWrapper img {
|
|
display: block;
|
|
border-radius: 50%;
|
|
}
|