feat(crypto wallets setting): improve UI

This commit is contained in:
plebeius.eth
2024-05-16 10:19:17 +02:00
parent c31c0a4482
commit 65b3b997fb
5 changed files with 29 additions and 29 deletions
@@ -36,8 +36,8 @@
.deleteAccount {
color: red;
float: right;
margin-right: 10px;
display: block;
margin-top: 10px;
}
.setting .createAccount {
@@ -168,7 +168,7 @@ const AccountSettings = () => {
<button onClick={saveAccount}>{t('save')}</button> <button onClick={() => setText(accountJson)}>{t('reset')}</button>{' '}
<button onClick={_importAccount}>{t('import')}</button> <button onClick={_exportAccount}>{t('export')}</button>{' '}
<button className={styles.deleteAccount} onClick={() => _deleteAccount(account?.name)}>
delete account
{t('delete_account')}
</button>
</div>
</div>