diff --git a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenu.tsx b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenu.tsx index bad084352..cee912701 100644 --- a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenu.tsx +++ b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenu.tsx @@ -4,9 +4,8 @@ const StyledDropdownMenu = styled.div<{ disableBlur?: boolean; width?: `${string}px` | 'auto' | number; }>` - backdrop-filter: ${({ disableBlur }) => - disableBlur ? 'none' : 'blur(20px)'}; - background: ${({ theme }) => theme.background.secondary}; + backdrop-filter: ${({ disableBlur }) => (disableBlur ? 'none' : 'blur(8px)')}; + background: ${({ theme }) => theme.background.transparent.secondary}; border: 1px solid ${({ theme }) => theme.border.color.medium}; border-radius: ${({ theme }) => theme.border.radius.md};