Skip to content

Commit

Permalink
Adjust BalanceDistribution header with design changes
Browse files Browse the repository at this point in the history
  • Loading branch information
buberdds committed Mar 5, 2024
1 parent 518e067 commit cdd39b9
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions src/app/pages/ConsensusAccountDetailsPage/BalanceDistribution.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,18 @@ const BalanceDistributionContent: FC<BalanceDistributionContentProps> = ({ accou

return (
<>
{!isMobile && (
<Typography sx={{ fontSize: '24px', fontWeight: 700, color: COLORS.brandDark, mb: 3 }}>
{t('account.totalValue', {
value: totalValue,
})}
</Typography>
)}
<Typography
sx={{
fontSize: isMobile ? '14px' : '24px',
fontWeight: isMobile ? 500 : 700,
color: COLORS.brandDark,
mb: 3,
}}
>
{t('account.totalValue', {
value: totalValue,
})}
</Typography>
<Box sx={{ height: '250px' }}>
<PieChart
compact={false}
Expand Down

0 comments on commit cdd39b9

Please sign in to comment.