From c8df1f2d323ec52db424118b7cbc40e0609525c9 Mon Sep 17 00:00:00 2001 From: MakiWinster Date: Sun, 8 Feb 2026 07:54:49 +0800 Subject: [PATCH] fix: limit tall image height to improve screenshot viewing experience --- ui/src/index.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/src/index.scss b/ui/src/index.scss index 78f54216c..39e7b0a06 100644 --- a/ui/src/index.scss +++ b/ui/src/index.scss @@ -274,6 +274,9 @@ img[src=''] { } img { max-width: 100%; + max-height: 70vh; + height: auto; + object-fit: contain; } video { max-width: 100%;