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

Merge pull request #9700 from darkwing/ux-search-icon

Provide image sizing so there's no jump when opening the swaps token search
This commit is contained in:
David Walsh 2020-10-23 14:42:44 -05:00 committed by GitHub
commit 046b495670
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

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

View File

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