From 27aa28740ee49c18296247483b5b475b059e5d60 Mon Sep 17 00:00:00 2001 From: SethBurkart123 Date: Wed, 18 Mar 2026 10:44:56 +1100 Subject: [PATCH] fix: reduce unnecessary notice modal scrolling --- src/css/injected.scss | 4 ++-- src/seqta/utils/Loaders/LoadHomePage.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/css/injected.scss b/src/css/injected.scss index e9fd4b51..275e2529 100644 --- a/src/css/injected.scss +++ b/src/css/injected.scss @@ -3726,7 +3726,7 @@ div.day-empty { background: var(--background-primary); border-radius: 16px; max-width: 600px; - max-height: 80vh; + max-height: 90vh; width: 100%; overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); @@ -3792,7 +3792,7 @@ div.day-empty { margin: 0 !important; flex: 1; display: block; - min-width: 600px; + min-width: 0; width: 100%; } diff --git a/src/seqta/utils/Loaders/LoadHomePage.ts b/src/seqta/utils/Loaders/LoadHomePage.ts index 8aabac23..dcbd553d 100644 --- a/src/seqta/utils/Loaders/LoadHomePage.ts +++ b/src/seqta/utils/Loaders/LoadHomePage.ts @@ -468,7 +468,7 @@ function openNoticeModal( document.body.removeChild(tempMeasureDiv); let targetHeight = Math.round( - Math.min(Math.max(measuredHeight, 200), viewportHeight * 0.85), + Math.min(Math.max(measuredHeight + 32, 200), viewportHeight * 0.9), ); let targetLeft = Math.round((viewportWidth - targetWidth) / 2); let targetTop = Math.round((viewportHeight - targetHeight) / 2) + scrollY; @@ -580,7 +580,7 @@ function openNoticeModal( ); const currentHeight = unifiedContent.getBoundingClientRect().height; const newTargetHeight = Math.round( - Math.min(Math.max(currentHeight, 200), newViewportHeight * 0.85), + Math.min(Math.max(currentHeight + 32, 200), newViewportHeight * 0.9), ); const newTargetLeft = Math.round((newViewportWidth - newTargetWidth) / 2); const newTargetTop =