diff --git a/frontend/src/pages/NewMaterialsPage.css b/frontend/src/pages/NewMaterialsPage.css index 70bdb4f..50a2f8c 100644 --- a/frontend/src/pages/NewMaterialsPage.css +++ b/frontend/src/pages/NewMaterialsPage.css @@ -9,6 +9,7 @@ min-height: 100vh; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; overflow-x: auto; + min-width: 1400px; /* 페이지 최소 너비 고정 */ } /* 헤더 */ @@ -288,7 +289,7 @@ cursor: not-allowed; } -/* 자재 테이블 - 엑셀 스타일 */ +/* 자재 테이블 - 엑셀 스타일 (반응형 제거, 고정 너비 + 스크롤) */ .materials-grid { background: white; margin: 16px 24px; @@ -296,6 +297,8 @@ max-height: calc(100vh - 220px); border: 1px solid #d1d5db; border-radius: 4px; + min-width: 1200px; /* 최소 너비 강제 */ + width: fit-content; /* 내용에 맞는 너비 */ } .detailed-grid-header {