From 99cbd84148186ea2619d1a0bae00a19523299bbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bel=C3=A9n=20Albeza?= Date: Thu, 29 Feb 2024 18:07:12 +0100 Subject: [PATCH] :bug: Fix team switch dropdown width --- frontend/src/app/main/ui/dashboard/sidebar.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/dashboard/sidebar.scss b/frontend/src/app/main/ui/dashboard/sidebar.scss index 7a7f69a7d..2623cc516 100644 --- a/frontend/src/app/main/ui/dashboard/sidebar.scss +++ b/frontend/src/app/main/ui/dashboard/sidebar.scss @@ -131,8 +131,10 @@ .dropdown { right: $s-2; top: $s-52; - min-width: $s-160; max-height: $s-480; + &:not(.teams-dropdown) { + min-width: $s-160; + } } }