Skip to content

Commit

Permalink
Change style for title
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianBouron committed Sep 24, 2023
1 parent ecd6e68 commit 793a189
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const TokenModal: FC<TokenModalProps> = ({ open, tokens, onClose, onSelec
color: 'white'
}}
>
<DialogTitle sx={{ m: 0, p: 2 }}>Tokens</DialogTitle>
<DialogTitle sx={{ margin: 0, paddingX: 2, paddingBottom: '8px' }}>Tokens</DialogTitle>
{tokens.length === 0 ? (
<Typography
display="flex"
Expand All @@ -71,7 +71,7 @@ export const TokenModal: FC<TokenModalProps> = ({ open, tokens, onClose, onSelec
No data found
</Typography>
) : (
<List style={{ maxHeight: '280px', overflow: 'auto' }}>
<List style={{ maxHeight: '280px', overflow: 'auto', paddingTop: 0 }}>
{tokens.map((token, index) => (
<ListItem button key={index} onClick={() => onSelectToken(token)}>
<ListItemAvatar>
Expand Down

0 comments on commit 793a189

Please sign in to comment.