diff --git a/packages/twenty-front/src/modules/ui/input/button/components/FloatingIconButton.tsx b/packages/twenty-front/src/modules/ui/input/button/components/FloatingIconButton.tsx index 6349940ec..6e5f7e8d0 100644 --- a/packages/twenty-front/src/modules/ui/input/button/components/FloatingIconButton.tsx +++ b/packages/twenty-front/src/modules/ui/input/button/components/FloatingIconButton.tsx @@ -35,7 +35,9 @@ const StyledButton = styled.button< background: ${({ theme, isActive }) => isActive ? theme.background.transparent.medium : theme.background.primary}; border: ${({ focus, theme }) => - focus ? `1px solid ${theme.color.blue}` : 'transparent'}; + focus + ? `1px solid ${theme.color.blue}` + : `1px solid ${theme.border.color.strong}`}; border-radius: ${({ position, theme }) => { switch (position) { case 'left':