From 901fae981445bb167887d02c91e1b91726e7f45e Mon Sep 17 00:00:00 2001 From: leeheejin Date: Thu, 23 Oct 2025 17:12:55 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8A=A4=ED=81=AC=EB=A1=A4=EA=B3=BC=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95=ED=95=9C=20=ED=95=B4=EC=83=81=EB=8F=84=20?= =?UTF-8?q?=ED=81=AC=EA=B8=B0=EC=99=80=20=EC=8B=A4=EC=A0=9C=ED=99=94?= =?UTF-8?q?=EB=A9=B4=20=ED=81=AC=EA=B8=B0=EA=B0=80=20=EB=8B=A4=EB=A5=B8=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/components/layout/AppLayout.tsx | 4 ++-- frontend/components/screen/ScreenDesigner.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/components/layout/AppLayout.tsx b/frontend/components/layout/AppLayout.tsx index c6313714..3aaf7e6b 100644 --- a/frontend/components/layout/AppLayout.tsx +++ b/frontend/components/layout/AppLayout.tsx @@ -456,8 +456,8 @@ function AppLayoutInner({ children }: AppLayoutProps) { - {/* 가운데 컨텐츠 영역 - overflow 문제 해결 */} -
{children}
+ {/* 가운데 컨텐츠 영역 - 스크롤 가능 */} +
{children}
{/* 프로필 수정 모달 */} diff --git a/frontend/components/screen/ScreenDesigner.tsx b/frontend/components/screen/ScreenDesigner.tsx index 8f399542..314a0a9f 100644 --- a/frontend/components/screen/ScreenDesigner.tsx +++ b/frontend/components/screen/ScreenDesigner.tsx @@ -4185,7 +4185,7 @@ export default function ScreenDesigner({ selectedScreen, onBackToList }: ScreenD className="flex justify-center" style={{ width: "100%", - minHeight: Math.max(screenResolution.height, 800) * zoomLevel, + minHeight: screenResolution.height * zoomLevel, }} > {/* 실제 작업 캔버스 (해상도 크기) - 고정 크기 + 줌 적용 */} @@ -4193,7 +4193,7 @@ export default function ScreenDesigner({ selectedScreen, onBackToList }: ScreenD className="bg-background border-border border shadow-lg" style={{ width: `${screenResolution.width}px`, - height: `${Math.max(screenResolution.height, 800)}px`, + height: `${screenResolution.height}px`, minWidth: `${screenResolution.width}px`, maxWidth: `${screenResolution.width}px`, minHeight: `${screenResolution.height}px`, -- 2.43.0