From dbd8f088868df726b325a32adc77ac0ea5188030 Mon Sep 17 00:00:00 2001 From: yabo0812 Date: Wed, 22 Oct 2025 10:52:09 +0900 Subject: [PATCH] =?UTF-8?q?=ED=9A=8C=EC=9D=98=EB=A1=9D=20=EB=AA=A9?= =?UTF-8?q?=EB=A1=9D=EC=A1=B0=ED=9A=8C=20=ED=99=94=EB=A9=B4=20=EB=B0=98?= =?UTF-8?q?=EC=9D=91=ED=98=95=20=EB=A0=88=EC=9D=B4=EC=95=84=EC=9B=83=20?= =?UTF-8?q?=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 가로폭이 넓을 때 과도한 좌우 여백 문제 해결 - 데스크톱(768px~): max-width 1400px 적용 - 큰 화면(1440px~): max-width 1600px으로 확장 - 화면 크기 변화에 따라 자연스럽게 컨텐츠 영역 조정 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- design/uiux/prototype/12-회의록목록조회.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/design/uiux/prototype/12-회의록목록조회.html b/design/uiux/prototype/12-회의록목록조회.html index 9c4ff29..90517fa 100644 --- a/design/uiux/prototype/12-회의록목록조회.html +++ b/design/uiux/prototype/12-회의록목록조회.html @@ -74,6 +74,14 @@ margin-left: 240px; /* 사이드바 너비만큼 왼쪽 여백 추가 */ padding: var(--space-xl); padding-bottom: var(--space-xl); + max-width: 1400px; /* 최대 너비 설정으로 과도한 좌우 여백 방지 */ + } + } + + /* 큰 화면: 컨텐츠를 더 넓게 활용 */ + @media (min-width: 1440px) { + .main-content { + max-width: 1600px; } }