From 5c209ceb75be07c9bbcb603f15ad2899297362b9 Mon Sep 17 00:00:00 2001 From: "2569718930@qq.com" <2569718930@qq.com> Date: Wed, 18 Mar 2026 00:47:33 +0800 Subject: [PATCH] Hide scrollbar in analysis modal --- frontend/components/dashboard/Dashboard.module.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/frontend/components/dashboard/Dashboard.module.css b/frontend/components/dashboard/Dashboard.module.css index 197b8032..29b10d9e 100644 --- a/frontend/components/dashboard/Dashboard.module.css +++ b/frontend/components/dashboard/Dashboard.module.css @@ -1543,6 +1543,17 @@ overflow-y: auto; } +/* Keep scroll behavior but hide visual scrollbar in today's/future analysis modal */ +.root :global(.modal-content.large.future-modal .modal-body) { + -ms-overflow-style: none; + scrollbar-width: none; +} + +.root :global(.modal-content.large.future-modal .modal-body::-webkit-scrollbar) { + width: 0; + height: 0; +} + .root :global(.history-modal .modal-body) { padding: 24px 28px 28px; }