Tiny adjustments

This commit is contained in:
Sebastien Castiel
2023-12-11 10:26:13 -05:00
parent c504a77338
commit 69fa008ea4
6 changed files with 42 additions and 19 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">
<main className="flex-1 max-w-screen-md w-full mx-auto p-4 flex flex-col gap-2">
{children}
</main>
)