Fixed select field input height (#4493)

This commit is contained in:
Aditya Vashisht 2024-03-15 08:41:32 -04:00 committed by GitHub
parent f6d27ce19c
commit 52f1b3ac98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -49,7 +49,7 @@ const StyledOptionInput = styled(TextInput)`
margin-right: ${({ theme }) => theme.spacing(2)};
& input {
height: ${({ theme }) => theme.spacing(2)};
height: ${({ theme }) => theme.spacing(6)};
}
`;