Skip to content

Commit

Permalink
[VerifiedCell] add padding (#911)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xbe1 authored Nov 14, 2024
1 parent 4c4f735 commit 658d1ae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/Table/VerifiedCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,10 @@ export function VerifiedAsset({data}: {data: VerifiedCellProps}) {
direction="row"
spacing={1}
alignItems="center"
sx={data.banner ? bannerTheme : undefined}
sx={{
...(data.banner ? bannerTheme : {}),
padding: 1,
}}
>
<StyledTooltip title={tooltipMessage}>{icon}</StyledTooltip>
{data.banner && <Box>{level}</Box>}
Expand Down

0 comments on commit 658d1ae

Please sign in to comment.