diff --git a/front/src/modules/ui/dropdown/components/StyledDropdownMenu.tsx b/front/src/modules/ui/dropdown/components/StyledDropdownMenu.tsx index 9dd444de3..f9c0b280e 100644 --- a/front/src/modules/ui/dropdown/components/StyledDropdownMenu.tsx +++ b/front/src/modules/ui/dropdown/components/StyledDropdownMenu.tsx @@ -16,7 +16,9 @@ export const StyledDropdownMenu = styled.div<{ flex-direction: column; + min-width: 160px; + overflow: hidden; - width: ${({ width }) => (width && width > 160 ? width : 160)}px; + width: ${({ width }) => (width ? `${width}px` : 'auto')}; `;