fix settings margins
Some checks are pending
Node.js CI / build (postgresql, 18.18) (push) Waiting to run

This commit is contained in:
Francis Cao 2025-08-26 11:16:42 -07:00
parent 984f426cfe
commit 78c1fd8283

View file

@ -55,7 +55,9 @@ export function SettingsLayout({ children }: { children: ReactNode }) {
allowMinimize={false}
/>
</Column>
<PageBody gap="6">{children}</PageBody>
<Column gap="6" margin="2">
<PageBody>{children}</PageBody>
</Column>
</Grid>
);
}