Skip to content

Commit

Permalink
fix sizing when no invest/redeem
Browse files Browse the repository at this point in the history
  • Loading branch information
JP Angelle committed Oct 25, 2023
1 parent 8dccfd0 commit c3ee2dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion centrifuge-app/src/components/Portfolio/TokenListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function TokenListItem({ balance, currency, poolId, trancheId, canInvestR
const icon = metadata?.pool?.icon?.uri ? cent.metadata.parseMetadataUrl(metadata.pool.icon.uri) : null

return (
<Root as="article" minWidth="960px">
<Root as="article" minWidth={canInvestRedeem ? '960px' : '750px'}>
<Grid gridTemplateColumns={`${COLUMN_GAPS} 1fr`} gap={3} p={2} alignItems="center">
<Grid as="header" gridTemplateColumns={`${sizes.iconMedium}px 1fr`} alignItems="center" gap={2}>
<Eththumbnail show={isTinlakePool}>
Expand Down

0 comments on commit c3ee2dc

Please sign in to comment.