1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Provide image sizing so there's no jump when opening the swaps token search

This commit is contained in:
David Walsh 2020-10-23 13:28:38 -05:00
parent 400881b1b1
commit f0202f2d2c
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ export default class TokenSearch extends Component {
position="start" position="start"
style={{ marginRight: '12px' }} style={{ marginRight: '12px' }}
> >
<img src="images/search.svg" /> <img src="images/search.svg" width="17" height="17" />
</InputAdornment> </InputAdornment>
) )
} }

View File

@ -10,7 +10,7 @@ const renderAdornment = () => (
position="start" position="start"
style={{ marginRight: '12px' }} style={{ marginRight: '12px' }}
> >
<img src="images/search.svg" /> <img src="images/search.svg" width="17" height="17" />
</InputAdornment> </InputAdornment>
) )