From 0cb9853a5588f71fcca8d74c45effa8e3ad9c014 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?=
<71827178+bosiraphael@users.noreply.github.com>
Date: Fri, 11 Oct 2024 17:03:57 +0200
Subject: [PATCH] Fix DropdownMenuInput border (#7603)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../ui/layout/dropdown/components/DropdownMenuInput.tsx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuInput.tsx b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuInput.tsx
index 145da879a..5b985fab3 100644
--- a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuInput.tsx
+++ b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuInput.tsx
@@ -25,7 +25,8 @@ const StyledInput = styled.input<{
&:focus {
${({ theme, hasError = false }) => {
if (hasError) return '';
- return `box-shadow: 0px 0px 0px 3px ${RGBA(theme.color.blue, 0.1)}`;
+ return `box-shadow: 0px 0px 0px 3px ${RGBA(theme.color.blue, 0.1)};
+ border-color: ${theme.color.blue};`;
}};
}