fix: Minor bugs in UI (#7891)

## Description

- This PR fixed #7890

---------

Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
This commit is contained in:
Harshit Singh
2024-11-07 19:34:33 +05:30
committed by GitHub
parent 60349d0989
commit 4f2b055ee0
5 changed files with 14 additions and 5 deletions

View File

@ -15,7 +15,7 @@ export const StyledIMaskInput = styled(IMaskInput)<StyledInputProps>`
margin: 0;
${TEXT_INPUT_STYLE}
width: 100%;
padding: ${({ theme }) => `${theme.spacing(0)} ${theme.spacing(1)}`};
padding: ${({ theme }) => `${theme.spacing(0)} ${theme.spacing(1.5)}`};
`;
const StyledContainer = styled.div`

View File

@ -33,7 +33,7 @@ export const CurrencyPickerDropdownSelect = ({
);
return (
<DropdownMenu width="200px" disableBlur>
<DropdownMenu width="240px" disableBlur>
<DropdownMenuSearchInput
value={searchFilter}
onChange={(event) => setSearchFilter(event.target.value)}