From bfc6bafb9540733f47435c2ce6a335306f294ad5 Mon Sep 17 00:00:00 2001 From: prik73 Date: Fri, 16 May 2025 22:35:10 +0530 Subject: [PATCH] mgr/dashboard: fix misaligned text links on login page Fixes a UI regression introduced after the Carbon update where the help-related links (Help, Security, Trademarks) on the login page were misaligned. The links are now left-aligned under the Ceph logo for visual consistency. Fixes: https://tracker.ceph.com/issues/71313 Signed-off-by: prik73 Signed-off-by: Afreen Misbah --- .../layouts/login-layout/login-layout.component.scss | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/login-layout/login-layout.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/login-layout/login-layout.component.scss index e0ac6a5a7e2..e1a0a8e6215 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/login-layout/login-layout.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/login-layout/login-layout.component.scss @@ -32,7 +32,16 @@ .list-inline { margin-bottom: 0; - margin-left: 17%; + } + + .branding-info { + align-items: flex-start; + display: flex; + flex-direction: column; + + img { + max-width: 100%; + } } a { -- 2.39.5