From b9e1a7bb0a1e8a7c17cd0a31634883c01a2be4fa Mon Sep 17 00:00:00 2001 From: Youzini-afk <13153778771cx@gmail.com> Date: Fri, 27 Mar 2026 23:55:34 +0800 Subject: [PATCH] fix: mobile panel use absolute inset:0 to fill overlay --- style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index a4c60f1..6195fc2 100644 --- a/style.css +++ b/style.css @@ -2092,12 +2092,15 @@ } #st-bme-panel { - width: 100%; - height: 100%; + position: absolute; + inset: 0; + width: auto; + height: auto; max-width: none; max-height: none; border-radius: 0; min-width: 0; + min-height: 0; resize: none; overflow: hidden; }