From afc384f0d92a71874ffec6c6886f5689afd74696 Mon Sep 17 00:00:00 2001 From: kjs Date: Fri, 31 Oct 2025 11:01:02 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20AppLayout=20overflow-hidden=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EC=9D=B8=ED=95=9C=20=EC=8A=A4=ED=81=AC=EB=A1=A4=20?= =?UTF-8?q?=EB=B9=84=ED=99=9C=EC=84=B1=ED=99=94=20=EB=AC=B8=EC=A0=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - main 태그의 overflow-hidden을 overflow-auto로 변경하여 스크롤 복구 - 모든 페이지에서 스크롤이 정상 작동하도록 수정 --- frontend/components/layout/AppLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/layout/AppLayout.tsx b/frontend/components/layout/AppLayout.tsx index 7be1ab07..b8f32629 100644 --- a/frontend/components/layout/AppLayout.tsx +++ b/frontend/components/layout/AppLayout.tsx @@ -459,7 +459,7 @@ function AppLayoutInner({ children }: AppLayoutProps) { {/* 가운데 컨텐츠 영역 - 스크롤 가능 */} -
+
{children}