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 8, 2024
1 parent 223bdda commit cac4db8
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 cac4db8

Please sign in to comment.