diff --git a/packages/twenty-front/src/modules/ui/layout/dropdown/components/StyledHeaderDropdownButton.tsx b/packages/twenty-front/src/modules/ui/layout/dropdown/components/StyledHeaderDropdownButton.tsx index 150898cc3..023060aad 100644 --- a/packages/twenty-front/src/modules/ui/layout/dropdown/components/StyledHeaderDropdownButton.tsx +++ b/packages/twenty-front/src/modules/ui/layout/dropdown/components/StyledHeaderDropdownButton.tsx @@ -5,9 +5,11 @@ type StyledDropdownButtonProps = { isActive?: boolean; }; -export const StyledHeaderDropdownButton = styled.div` +export const StyledHeaderDropdownButton = styled.button` + font-family: inherit; align-items: center; background: ${({ theme }) => theme.background.primary}; + border: none; border-radius: ${({ theme }) => theme.border.radius.sm}; color: ${({ isActive, theme, color }) => color ?? (isActive ? theme.color.blue : theme.font.color.secondary)};