Skip to content

Commit

Permalink
fix: CP-9334 add network page padding (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvava authored Oct 10, 2024
1 parent 29bdbdd commit 9cc2635
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/pages/Networks/AddNetwork.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ export const AddNetwork = () => {
};

return (
<Stack sx={{ width: 1, px: 2 }}>
<PageTitle margin="8 0 12px">{t('Add Network')}</PageTitle>
<Stack sx={{ width: 1 }}>
<PageTitle>{t('Add Network')}</PageTitle>
<FlexScrollbars ref={scrollbarRef}>
<Stack sx={{ gap: 1 }}>
<Stack sx={{ gap: 1, px: 2 }}>
{errorMessage && (
<Typography
variant="body2"
Expand All @@ -143,6 +143,7 @@ export const AddNetwork = () => {
alignItems: 'center',
py: 3,
gap: 1,
px: 2,
}}
>
<Button
Expand Down

0 comments on commit 9cc2635

Please sign in to comment.