From 35492bcef743fc7641dbf5009b0becc3c11f023d Mon Sep 17 00:00:00 2001 From: Jacob Shandling <61553566+jacobshandling@users.noreply.github.com> Date: Thu, 8 Jun 2023 12:11:18 -0400 Subject: [PATCH] UI: Fix dropdown height bug (#12215) **Disabled the Platform dropdown's default max-height to allow it to fully encompass its contents, which are now longer with the addition of the ChromeOS option.** Before (Chrome and Safari): Screenshot 2023-06-07 at 6 14 56 PM After (All 3 browsers): Screenshot 2023-06-07 at 6 08 35 PM - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling --- frontend/pages/DashboardPage/_styles.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/pages/DashboardPage/_styles.scss b/frontend/pages/DashboardPage/_styles.scss index 93885eef5a..a7584b6fa4 100644 --- a/frontend/pages/DashboardPage/_styles.scss +++ b/frontend/pages/DashboardPage/_styles.scss @@ -63,6 +63,14 @@ &__platform_dropdown { width: 138px; + + .Select-menu-outer { + max-height: none; + + .Select-menu { + max-height: none; + } + } } &__section {