Improve design

This commit is contained in:
Sebastien Castiel
2023-12-14 17:15:28 -05:00
parent 7e279a535d
commit aa95497aab
5 changed files with 7 additions and 7 deletions

View File

@@ -2,7 +2,7 @@ import { PropsWithChildren } from 'react'
export default function GroupsLayout({ children }: PropsWithChildren<{}>) {
return (
<main className="flex-1 max-w-screen-md w-full mx-auto p-4 flex flex-col gap-2">
<main className="flex-1 max-w-screen-md w-full mx-auto px-4 py-6 flex flex-col gap-6">
{children}
</main>
)