clamp zoomed avatar widths to 400px as base

This commit is contained in:
RossAscends 2023-09-12 02:09:18 +09:00
parent 004baf7b87
commit 4bf91c7772
1 changed files with 3 additions and 2 deletions

View File

@ -3413,7 +3413,8 @@ 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));
/* width: calc((100vw - var(--sheldWidth)) /2); */
position: absolute;
padding: 0;
filter: drop-shadow(2px 2px 2px var(--grey7070a));
@ -3616,4 +3617,4 @@ a {
height: 100vh;
z-index: 9999;
}
}
}