From 8c96acc2a3aed30b831d95ca7e588b090bc131a0 Mon Sep 17 00:00:00 2001 From: GARY <108233340+GARY121github@users.noreply.github.com> Date: Sun, 14 Jan 2024 20:06:16 +0530 Subject: [PATCH] Improved Floating Button Icon style (#3428) * Improved Floating Button Icon style * Improve Floating Button Icon style #3420 --- .../modules/ui/input/button/components/FloatingIconButton.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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':