Fix - Input box shadow, left icon focus and new size variant (#9902)

Favorite folder input needs to be 28px --- added a new sizeVariant 
Removed box shadow completely -- checked with @Bonapara 
The left icon used to be of color light on focus -- added a state to
check if input is focused

---------

Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
This commit is contained in:
nitin
2025-01-30 00:14:25 +05:30
committed by GitHub
parent 0d6f4a32a7
commit 4edbb13706
3 changed files with 34 additions and 16 deletions

View File

@ -36,7 +36,6 @@ const StyledButton = styled('button')`
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
:hover {
background: ${({ theme }) => theme.background.transparent.light};
}

View File

@ -78,6 +78,7 @@ export const NavigationDrawerInput = ({
onChange={onChange}
placeholder={placeholder}
onFocus={handleFocus}
sizeVariant="md"
fullWidth
autoFocus
/>