Skip to content

Commit

Permalink
fix: serch input alignment ie11
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Nov 14, 2020
1 parent f6e18da commit 5ddcb45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/components/src/SearchInput/SearchInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,12 +206,12 @@ export const SearchInput = <ItemType extends SearchInputItemType>({
}}
onClick={() => updateIsOpen(!isOpen)}
onChange={e => updateSearch(e.target.value)}
sx={{ pl: '32px' }}
sx={{ pl: 4, py: 2, lineHeight: 'normal' }}
{...rest}
/>
<Box
as={SearchIcon}
sx={{ position: 'absolute', left: '10px', top: '15px' }}
sx={{ position: 'absolute', left: '8px', top: 0, bottom: 0, margin: 'auto' }}
/>
</div>
</Popover>
Expand Down

0 comments on commit 5ddcb45

Please sign in to comment.