mirror of
https://github.com/lingble/twenty.git
synced 2025-11-02 05:37:56 +00:00
Fix DropdownMenuInput border (#7603)
<img width="213" alt="Capture d’écran 2024-10-11 à 16 52 27" src="https://github.com/user-attachments/assets/c4b171e7-9df1-4b75-8cbe-25a2672d7211"> <img width="167" alt="Capture d’écran 2024-10-11 à 16 52 18" src="https://github.com/user-attachments/assets/9a853e0e-d50a-4d6a-9c27-789fdd2df0ac">
This commit is contained in:
@@ -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};`;
|
||||
}};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user