aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/components/Layout.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-12-03 03:51:29 +0900
committernsfisis <nsfisis@gmail.com>2025-12-04 23:27:28 +0900
commit58d132139ba8d5fa17c8681a0275047ce4cca809 (patch)
tree7dd18f5de496483b7d318e12e43379a51f3a6056 /frontend/src/components/Layout.tsx
parentaac4e9ccdebe52c156506d1899d5a38e99366f69 (diff)
downloadfeedaka-58d132139ba8d5fa17c8681a0275047ce4cca809.tar.gz
feedaka-58d132139ba8d5fa17c8681a0275047ce4cca809.tar.zst
feedaka-58d132139ba8d5fa17c8681a0275047ce4cca809.zip
feat(frontend): design update
Diffstat (limited to 'frontend/src/components/Layout.tsx')
-rw-r--r--frontend/src/components/Layout.tsx4
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>
);
}