fix: add more margin top to icon

This commit is contained in:
RadoslavDimchev 2023-10-31 16:23:29 +02:00
parent dcc7b9ceea
commit f431c14738
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ const RecoveryMechanismCard = ({ value, recoveryMechanism, icon }: RecoveryMecha
{value}
</Text>
{icon && (
<div style={{ display: 'flex', justifyContent: 'end', marginTop: '8px' }}>
<div style={{ display: 'flex', justifyContent: 'end', marginTop: '16px' }}>
<img src={`/icons/${icon}`} alt="logo" />
</div>
)}