Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

135 feature add custom token in evm #335

Merged
merged 3 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ui/FRWComponent/LLFormHelperText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const genHelperText = (
}}
>
<CheckCircleIcon size={24} color={'#41CC5D'} style={{ margin: '8px' }} />
<Typography variant="body1" color="text.success">
<Typography variant="body2" color="text.success">
{successMsg || chrome.i18n.getMessage('Sounds_good')}
</Typography>
</Box>
Expand All @@ -54,7 +54,7 @@ const genHelperText = (
}}
>
<CancelIcon size={24} color={'#E54040'} style={{ margin: '8px' }} />
<Typography variant="body1" color="text.error">
<Typography variant="body2" color="text.error">
{errorMsg}
</Typography>
</Box>
Expand Down
4 changes: 2 additions & 2 deletions src/ui/views/Wallet/AddCustom/AddCustomEvmToken.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ const AddCustomEvmToken = () => {
const Header = () => {
return (
<Box sx={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
<IconButton onClick={history.goBack} sx={{ height: '40px' }}>
<IconButton onClick={history.goBack} sx={{ height: '40px', padding: '0' }}>
<ArrowBackIcon sx={{ color: 'icon.navi' }} />
</IconButton>
<Typography
Expand All @@ -166,7 +166,7 @@ const AddCustomEvmToken = () => {
>
Add Custom Token
</Typography>
<Box></Box>
<Box sx={{ width: '24px' }}></Box>
</Box>
);
};
Expand Down
Loading