fix oversized zoomed avatars again

This commit is contained in:
RossAscends 2023-09-17 19:55:33 +09:00
parent 751c0723dc
commit 323493962a
1 changed files with 1 additions and 1 deletions

View File

@ -3438,7 +3438,7 @@ a {
min-height: 100px;
max-height: 90vh;
max-width: 90vh;
width: calc((100vw - var(--sheldWidth)) /2);
width: clamp(100px, 400px, calc((100vw - var(--sheldWidth)) /2));
position: absolute;
padding: 0;
filter: drop-shadow(2px 2px 2px var(--grey7070a));