From 60674feb1054aab93a4962671efc5e3763758e6c Mon Sep 17 00:00:00 2001 From: Will Miao Date: Tue, 24 Feb 2026 09:12:07 +0800 Subject: [PATCH] feat(ui): increase settings modal width and adjust height for better responsiveness - Increase modal width from 800px to 1000px to accommodate more content - Change height from fixed 600px to dynamic calculation based on viewport height - Maintain responsive constraints with max-width and max-height properties --- static/css/components/modal/settings-modal.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/css/components/modal/settings-modal.css b/static/css/components/modal/settings-modal.css index 65b2922d..ef08f929 100644 --- a/static/css/components/modal/settings-modal.css +++ b/static/css/components/modal/settings-modal.css @@ -20,8 +20,8 @@ } .settings-modal { - width: 800px; - height: 600px; + width: 1000px; + height: calc(92vh - var(--header-height, 48px)); max-width: 95vw; max-height: 90vh; display: flex;