Skip to content

Commit

Permalink
fix: recipient title alignment (#2240)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamacook authored Jul 6, 2023
1 parent 58291de commit 0e071e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/tx-flow/flows/TokenTransfer/SendToBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import EthHashInfo from '@/components/common/EthHashInfo'
const SendToBlock = ({ address, title = 'To' }: { address: string; title?: string }) => {
return (
<Grid container gap={1} alignItems="center">
<Grid item xs={4} md={2}>
<Typography variant="body2" color="text.secondary">
<Grid item md>
<Typography variant="body2" color="text.secondary" noWrap>
{title}
</Typography>
</Grid>
<Grid item>
<Grid item xs={8} md={10}>
<Typography variant="body2" component="div">
<EthHashInfo address={address} shortAddress={false} hasExplorer showCopyButton />
</Typography>
Expand Down

0 comments on commit 0e071e6

Please sign in to comment.