From 323493962ab9834317dc04f028fcce2c575f0275 Mon Sep 17 00:00:00 2001 From: RossAscends <124905043+RossAscends@users.noreply.github.com> Date: Sun, 17 Sep 2023 19:55:33 +0900 Subject: [PATCH] fix oversized zoomed avatars again --- public/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/style.css b/public/style.css index 4314d0abf..f0433ca31 100644 --- a/public/style.css +++ b/public/style.css @@ -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));