From 97767bc5ca2fa74a2a94c3244e463ca687ac2a91 Mon Sep 17 00:00:00 2001 From: caadiq Date: Sat, 10 Jan 2026 00:30:12 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9D=BC=EC=A0=95=20=EB=AA=A9=EB=A1=9D?= =?UTF-8?q?=20=EB=86=92=EC=9D=B4=20=EC=9E=90=EB=8F=99=20=EA=B3=84=EC=82=B0?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EC=9E=98=EB=A6=BC=20=EB=AC=B8=EC=A0=9C=20?= =?UTF-8?q?=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - main을 flex flex-col로 변경 - 브레드크럼, 타이틀에 flex-shrink-0 추가 - 그리드에 flex-1 min-h-0 추가 - 일정 목록 컬럼에 flex flex-col min-h-0 추가 - 스크롤 컨테이너에서 max-h 고정값 제거하고 flex-1로 변경 --- frontend/src/pages/pc/admin/AdminSchedule.jsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/pages/pc/admin/AdminSchedule.jsx b/frontend/src/pages/pc/admin/AdminSchedule.jsx index 64565c2..4dd327c 100644 --- a/frontend/src/pages/pc/admin/AdminSchedule.jsx +++ b/frontend/src/pages/pc/admin/AdminSchedule.jsx @@ -597,9 +597,9 @@ function AdminSchedule() { {/* 메인 콘텐츠 */} -
+
{/* 브레드크럼 */} -
+
@@ -608,7 +608,7 @@ function AdminSchedule() {
{/* 타이틀 + 추가 버튼 */} -
+

일정 관리

fromis_9의 일정을 관리합니다

@@ -631,7 +631,7 @@ function AdminSchedule() {
-
+
{/* 왼쪽: 달력 + 카테고리 필터 */}
{/* 달력 (Schedule.jsx와 동일한 패턴) */} @@ -938,9 +938,9 @@ function AdminSchedule() {
{/* 오른쪽: 일정 목록 */} -
+
{/* 일정 목록 */} -
+
@@ -1079,7 +1079,7 @@ function AdminSchedule() { ref={scrollContainerRef} onScroll={handleScroll} id="adminScheduleScrollContainer" - className="max-h-[calc(100vh-280px)] overflow-y-auto divide-y divide-gray-100 py-2" + className="flex-1 overflow-y-auto divide-y divide-gray-100 py-2" > {isSearchMode && searchTerm ? ( /* 검색 모드: useInView 기반 무한 스크롤 */