From 612abffa6d570ca919cddad75899259b33e28eba Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Mon, 2 Jun 2025 07:38:10 +0000 Subject: (김준회) 고해상도 디스플레이 활용을 위한 CSS 변경 (컨테이너 클래스) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/globals.css | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'app/globals.css') diff --git a/app/globals.css b/app/globals.css index d03b36e7..f1d8bb54 100644 --- a/app/globals.css +++ b/app/globals.css @@ -151,23 +151,26 @@ body { } .container-wrapper { - @apply min-[1800px]:max-w-[1800px] min-[1800px]:border-x border-border/30 dark:border-border mx-auto w-full; + /* 원본 */ + /* @apply min-[1800px]:max-w-[1800px] min-[1800px]:border-x border-border/30 dark:border-border mx-auto w-full; */ + @apply border-x border-border/30 dark:border-border mx-auto px-12 w-full; /* 추가 breakpoint */ - @apply min-[2200px]:max-w-[2000px]; - @apply min-[2600px]:max-w-[2400px]; + /* @apply min-[2200px]:max-w-[2000px]; + @apply min-[2600px]:max-w-[2400px]; */ } - .container { - @apply px-4 xl:px-6 2xl:px-4 mx-auto max-w-[1800px]; + /* 원본 */ + /* @apply px-4 xl:px-6 2xl:px-4 mx-auto max-w-[1800px]; */ + /* @apply px-4 xl:px-6 2xl:px-4 mx-auto; */ + @apply py-6 px-6 min-w-full mx-auto; } } - .MuiTreeItem-label{ font-size: 0.875rem!important; } @@ -176,7 +179,6 @@ body { all: unset !important; } - /* 읽기 전용 셀 기본 스타일 */ .read-only-cell { background-color: #f5f5f5; -- cgit v1.2.3