From: Afreen Misbah Date: Wed, 25 Feb 2026 04:33:26 +0000 (+0530) Subject: mgr/dashboard: Fix breaking layout in overview page X-Git-Tag: v21.0.0~203^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=cc1923d57943c1a22863ee2d464feb276806693f;p=ceph.git mgr/dashboard: Fix breaking layout in overview page Issue: One opening the notification panel overview page breaks. Reason: Due to the css grid used in notification panel and flex grid in overview page. Fix: Removed css grid from the notification header Signed-off-by: Afreen Misbah --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notification-panel/notification-header/notification-header.component.html b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notification-panel/notification-header/notification-header.component.html index 55e30a50e554..2906f9bba1c1 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notification-panel/notification-header/notification-header.component.html +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notification-panel/notification-header/notification-header.component.html @@ -1,39 +1,23 @@ -
-
-
-
-

Tasks and Notifications

- -
-
- +
+

Tasks and Notifications

+
+ +
diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notification-panel/notification-header/notification-header.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notification-panel/notification-header/notification-header.component.scss index 332ceaf53771..fef7cb5f3f6d 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notification-panel/notification-header/notification-header.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notification-panel/notification-header/notification-header.component.scss @@ -19,4 +19,10 @@ padding-top: 0; padding-left: spacing.$spacing-06; } + + &__heading-and-button { + display: flex; + flex-direction: row; + justify-content: space-between; + } }