feat: add background to icons

This commit is contained in:
bartosz-lipinski 2020-10-01 23:58:47 -05:00
parent 7aa44b3363
commit 6d5f975bb1
1 changed files with 6 additions and 1 deletions

View File

@ -233,7 +233,12 @@ const Logo = ({ icon, tokenName }) => {
return <img src={icon} return <img src={icon}
title={tokenName} title={tokenName}
alt={tokenName} alt={tokenName}
style={{ width: 20, height: 20 }} style={{
width: 20,
height: 20,
backgroundColor: 'white',
borderRadius: 10
}}
onError={() => setHasError(true)} />; onError={() => setHasError(true)} />;
} }