Fix dropdown overflow (#8907)

Fixes:
<img width="267" alt="Capture d’écran 2024-12-03 à 14 59 24"
src="https://github.com/user-attachments/assets/73278208-25d2-4225-a632-eb37cc69fcd6">
This commit is contained in:
Raphaël Bosi
2024-12-05 18:12:59 +01:00
committed by GitHub
parent de56c01206
commit c23896c5dc

View File

@ -26,8 +26,6 @@ const StyledDropdownMenu = styled.div<{
z-index: 30;
width: ${({ width = 200 }) =>
typeof width === 'number' ? `${width}px` : width};
overflow: hidden;
`;
export const DropdownMenu = StyledDropdownMenu;