Skip to content

Commit

Permalink
Add more spacing between cards and tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
buberdds committed Mar 5, 2024
1 parent cdd39b9 commit 4edb01f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/pages/ConsensusAccountDetailsPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { ConsensusAccountDetailsContext } from './hooks'

export const ConsensusAccountDetailsPage: FC = () => {
const { t } = useTranslation()
const { isMobile } = useScreenSize()
const scope = useRequiredScopeParam()
const { network } = scope
const { address } = useLoaderData() as AddressLoaderData
Expand All @@ -32,7 +33,7 @@ export const ConsensusAccountDetailsPage: FC = () => {
return (
<PageLayout>
<ConsensusAccountDetailsCard account={account} isError={isError} isLoading={isLoading} />
<Grid container spacing={4}>
<Grid container spacing={4} sx={{ mb: isMobile ? 4 : 5 }}>
<Grid item xs={12} md={6}>
<BalanceDistribution account={account} isLoading={isLoading} />
</Grid>
Expand Down

0 comments on commit 4edb01f

Please sign in to comment.