Skip to content

Commit

Permalink
fix: Improve padding for <FormGridSection> headers
Browse files Browse the repository at this point in the history
  • Loading branch information
beverloo committed Oct 8, 2024
1 parent 0ca17dd commit f0fd762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/admin/components/FormGridSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export function FormGridSection(props: React.PropsWithChildren<FormGridSectionPr
<form noValidate onSubmit={handleSubmit}>
<Paper sx={{ p: 2 }}>
{ !('noHeader' in sectionHeaderProps) &&
<SectionHeader {...sectionHeaderProps} sx={{ pb: 1 }} /> }
<SectionHeader {...sectionHeaderProps} sx={{ pb: 2 }} /> }
<Grid container spacing={2}>
{children}
<Collapse in={!!form.formState.isDirty} sx={{ width: '100%' }}>
Expand Down

0 comments on commit f0fd762

Please sign in to comment.