From e18729c52c0be1bba485c7144989ddbc1d01bff4 Mon Sep 17 00:00:00 2001 From: Luke Heath Date: Fri, 22 Nov 2024 15:21:13 -0600 Subject: [PATCH] Fix teams modal only showing two options (#23889) (#24080) --- frontend/components/Modal/_styles.scss | 2 +- frontend/components/forms/fields/Dropdown/_styles.scss | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/components/Modal/_styles.scss b/frontend/components/Modal/_styles.scss index e12ba664092f..433e2e886d8c 100644 --- a/frontend/components/Modal/_styles.scss +++ b/frontend/components/Modal/_styles.scss @@ -26,7 +26,7 @@ margin-top: $pad-large; font-size: $x-small; max-height: 800px; - overflow-y: auto; + overflow: visible; .input-field { width: 100%; diff --git a/frontend/components/forms/fields/Dropdown/_styles.scss b/frontend/components/forms/fields/Dropdown/_styles.scss index c86dc61bf62c..dc7a763f7c3e 100644 --- a/frontend/components/forms/fields/Dropdown/_styles.scss +++ b/frontend/components/forms/fields/Dropdown/_styles.scss @@ -225,6 +225,10 @@ animation: fade-in 150ms ease-out; } + .Select-menu { + max-height: 190px; + } + .Select-noresults { font-size: $x-small; }