From f47eba5764c667ff0e6cb35a2273e12fdb061d1a Mon Sep 17 00:00:00 2001 From: tisonhuang Date: Mon, 2 Mar 2026 13:59:25 +0800 Subject: [PATCH] fix(export): avoid overlap with window close controls --- src/pages/ExportPage.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pages/ExportPage.scss b/src/pages/ExportPage.scss index 08a8183..66bcc4b 100644 --- a/src/pages/ExportPage.scss +++ b/src/pages/ExportPage.scss @@ -1016,7 +1016,10 @@ .export-session-detail-overlay { position: fixed; - inset: 0; + top: 40px; + right: 0; + bottom: 0; + left: 0; z-index: 1100; display: flex; justify-content: flex-end; @@ -1025,7 +1028,7 @@ .export-session-detail-panel { width: min(360px, calc(100vw - 16px)); - height: 100vh; + height: calc(100vh - 40px); border-left: 1px solid var(--border-color); border-radius: 0; background: var(--card-bg);