From 43cd883f535ca2f5d9e1ced521e786b5d320e919 Mon Sep 17 00:00:00 2001 From: Klink <85062+dogmar@users.noreply.github.com> Date: Thu, 24 Aug 2023 11:48:21 -0700 Subject: [PATCH] fix: Broken dropdowns (#512) --- src/components/PopoverListBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PopoverListBox.tsx b/src/components/PopoverListBox.tsx index e449a616..97362c3b 100644 --- a/src/components/PopoverListBox.tsx +++ b/src/components/PopoverListBox.tsx @@ -49,7 +49,7 @@ export const PopoverWrapper = styled.div<{ })) const Animated = styled(animated.div)((_) => ({ - maxWidth: '100%', + width: '100%', maxHeight: '100%', display: 'flex', }))