From 5fb62c582ec3216cd1c510c6a86b64ebd3f61bff Mon Sep 17 00:00:00 2001 From: yabo0812 Date: Wed, 22 Oct 2025 11:09:35 +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=EC=97=AC?= =?UTF-8?q?=EB=B0=B1=20=EC=B5=9C=EC=A0=81=ED=99=94=20(=EC=B5=9C=EC=A2=85)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 중복 미디어 쿼리에서 max-width: 900px 제거 - margin: auto 제거하여 컨텐츠가 가용 공간 전체 활용 - 참조 이미지(여백 조정요청.png)와 같이 자연스러운 레이아웃 구현 - 오른쪽 과도한 여백 완전 제거 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- design/uiux/prototype/12-회의록목록조회.html | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/design/uiux/prototype/12-회의록목록조회.html b/design/uiux/prototype/12-회의록목록조회.html index bacf3f7..3009595 100644 --- a/design/uiux/prototype/12-회의록목록조회.html +++ b/design/uiux/prototype/12-회의록목록조회.html @@ -76,6 +76,10 @@ padding-bottom: var(--space-xl); /* max-width 제거: 가용 공간을 모두 활용하여 여백 최소화 */ } + + .filter-grid { + grid-template-columns: repeat(4, 1fr); + } } /* 필터 및 검색 영역 */ @@ -326,18 +330,6 @@ margin-bottom: var(--space-lg); } - /* 반응형 */ - @media (min-width: 768px) { - .main-content { - max-width: 900px; - margin-left: auto; - margin-right: auto; - } - - .filter-grid { - grid-template-columns: repeat(4, 1fr); - } - }