diff options
Diffstat (limited to 'frontend/src/components/Layout.tsx')
| -rw-r--r-- | frontend/src/components/Layout.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/Layout.tsx b/frontend/src/components/Layout.tsx index 09a0eb4..5f30de5 100644 --- a/frontend/src/components/Layout.tsx +++ b/frontend/src/components/Layout.tsx @@ -7,9 +7,9 @@ interface Props { export function Layout({ children }: Props) { return ( - <div className="min-h-screen bg-gray-50"> + <div className="min-h-screen bg-stone-50"> <Navigation /> - <main className="container mx-auto px-4 py-8">{children}</main> + <main className="mx-auto max-w-5xl px-6 py-10">{children}</main> </div> ); } |
