From 489b402bfdbd6e08789c67a2ed37afdab3d66f98 Mon Sep 17 00:00:00 2001 From: nelee Date: Wed, 13 May 2026 17:25:43 +0900 Subject: [PATCH] =?UTF-8?q?fix(layout):=20=ED=97=A4=EB=8D=94=20=EC=98=A4?= =?UTF-8?q?=ED=94=84=EC=85=8B=20=EC=B2=98=EB=A6=AC=EB=A5=BC=20root=20layou?= =?UTF-8?q?t=EC=9C=BC=EB=A1=9C=20=ED=86=B5=EC=9D=BC=20(#98)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - layout.tsx content div에 pt-16 추가로 단일 오프셋 처리 - Container의 py-25를 pb-25 pt-6으로 분리해 상단 중복 제거 - workspace 페이지 로딩/메인 div의 pt-16 제거 Co-Authored-By: Claude Sonnet 4.6 --- src/app/(main)/project/workspace/[id]/page.tsx | 4 ++-- src/app/layout.tsx | 2 +- src/components/shared/Container.tsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/(main)/project/workspace/[id]/page.tsx b/src/app/(main)/project/workspace/[id]/page.tsx index 73b229d..289dcee 100644 --- a/src/app/(main)/project/workspace/[id]/page.tsx +++ b/src/app/(main)/project/workspace/[id]/page.tsx @@ -302,7 +302,7 @@ export default function ProjectPage() { if (tasksLoading) { return ( -
+
{[1, 2, 3].map((i) => (
@@ -318,7 +318,7 @@ export default function ProjectPage() { } return ( -
+
{/* 메인 콘텐츠 */} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 25c8711..ad2694b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -36,7 +36,7 @@ export default function RootLayout({
-
{children}
+
{children}
diff --git a/src/components/shared/Container.tsx b/src/components/shared/Container.tsx index 183c6f2..d63da06 100644 --- a/src/components/shared/Container.tsx +++ b/src/components/shared/Container.tsx @@ -9,7 +9,7 @@ export default function Container({ }: ContainerProps) { return (
{children}