aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/groups/layout.tsx')
-rw-r--r--src/app/groups/layout.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/app/groups/layout.tsx b/src/app/groups/layout.tsx
index d8aff39..df7d39e 100644
--- a/src/app/groups/layout.tsx
+++ b/src/app/groups/layout.tsx
@@ -1,5 +1,9 @@
import { PropsWithChildren } from 'react'
export default function GroupsLayout({ children }: PropsWithChildren<{}>) {
- return <main>{children}</main>
+ return (
+ <main className="flex-1 max-w-screen-md w-full mx-auto p-4">
+ {children}
+ </main>
+ )
}