스크롤과 설정한 해상도 크기와 실제화면 크기가 다른 문제 해결

This commit is contained in:
leeheejin
2025-10-23 17:12:55 +09:00
parent eb49594161
commit 901fae9814
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -456,8 +456,8 @@ function AppLayoutInner({ children }: AppLayoutProps) {
</div>
</aside>
{/* 가운데 컨텐츠 영역 - overflow 문제 해결 */}
<main className="h-[calc(100vh-3.5rem)] min-w-0 flex-1 overflow-hidden bg-white p-4">{children}</main>
{/* 가운데 컨텐츠 영역 - 스크롤 가능 */}
<main className="h-[calc(100vh-3.5rem)] min-w-0 flex-1 overflow-auto bg-white p-4">{children}</main>
</div>
{/* 프로필 수정 모달 */}