From ac5a721450bb3a02652a0feec45c9faf1b78e007 Mon Sep 17 00:00:00 2001 From: Afreen Misbah Date: Tue, 3 Feb 2026 17:29:45 +0530 Subject: [PATCH] mgr/dashboard: Fix footer of notification panel Fixes https://tracker.ceph.com/issues/74735 Signed-off-by: Afreen Misbah --- .../notification-panel/notification-panel.component.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notification-panel/notification-panel/notification-panel.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notification-panel/notification-panel/notification-panel.component.scss index e7d227fb82c..745c39c5303 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notification-panel/notification-panel/notification-panel.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notification-panel/notification-panel/notification-panel.component.scss @@ -10,7 +10,8 @@ $inline-min-size: 20rem; position: fixed; z-index: 2; - overflow: auto; + overflow-y: auto; + overflow-x: hidden; background-color: var(--cds-layer-01); border-block-end: 1px solid var(--cds-border-subtle-02); border-inline-start: 1px solid var(--cds-border-subtle-02); -- 2.47.3