From 5dd8c94afa0fc8538fe44941f22a5e65965a6bc2 Mon Sep 17 00:00:00 2001 From: Sergio de Cristofaro <sdecri@gmail.com> Date: Mon, 2 Sep 2024 18:45:24 +0200 Subject: [PATCH] fix select list content overflow on firefox --- src/components/Select/common/SelectStyled.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Select/common/SelectStyled.tsx b/src/components/Select/common/SelectStyled.tsx index 80366c75..9368665a 100644 --- a/src/components/Select/common/SelectStyled.tsx +++ b/src/components/Select/common/SelectStyled.tsx @@ -179,7 +179,7 @@ export const SelectList = styled.div` `; export const SelectListContent = styled.div` width: inherit; - overflow: overlay; + overflow: auto; flex: 1; `;