From 6d49fb2be0f0ccd14e36cac4a1a63d79906c4f32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=ADa=20Valderrama?= Date: Wed, 12 Aug 2026 16:52:27 +0200 Subject: [PATCH] :bug: Fix organization dropdown alignment (#11216) --- frontend/src/app/main/ui/dashboard/sidebar.scss | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/main/ui/dashboard/sidebar.scss b/frontend/src/app/main/ui/dashboard/sidebar.scss index 836e6b6e93..3dcc3b8ba8 100644 --- a/frontend/src/app/main/ui/dashboard/sidebar.scss +++ b/frontend/src/app/main/ui/dashboard/sidebar.scss @@ -699,12 +699,13 @@ grid-template-columns: 1fr auto auto; gap: var(--sp-s); height: 100%; - padding: 0 px2rem(10); + padding: 0 0 0 px2rem(10); width: 100%; } .current-organization-no-options { gap: 0; + padding: 0 px2rem(8) 0 px2rem(10); } .current-organization .arrow-icon { @@ -734,11 +735,15 @@ display: flex; justify-content: center; align-items: center; - width: $sz-48; - height: $sz-48; + width: $sz-28; + height: 100%; + padding: 0; + border-radius: 0 $br-8 $br-8 0; &:hover { --icon-stroke: var(--color-accent-primary); + + cursor: pointer; } }