From 08331b7b58f37f51111a7077408c2520a1ecf77f Mon Sep 17 00:00:00 2001 From: nevermoregb Date: Sat, 5 Apr 2025 10:03:15 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B3=B5=ED=9C=B4=EC=9D=BC=20style=20=EB=8B=AC?= =?UTF-8?q?=EB=A0=A5=20=EC=A2=8C=EC=9A=B0=EB=A1=9C=20=EB=84=93=EA=B2=8C=20?= =?UTF-8?q?=EB=82=98=EC=98=A4=EA=B2=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/main/MainEventCalendar.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/main/MainEventCalendar.vue b/src/components/main/MainEventCalendar.vue index 34e76b2..a9591f6 100644 --- a/src/components/main/MainEventCalendar.vue +++ b/src/components/main/MainEventCalendar.vue @@ -298,7 +298,7 @@ // 날짜 선택 가능 여부를 확인하는 공통 함수 const isSelectableDate = date => { const checkDate = dayjs(date); - const isWeekend = checkDate.day() === 0 || checkDate.day() === 6; + const isWeekend = checkDate.day() === 0 || checkDate.day() === 6; // 주말체크 // 공휴일 체크 const isHoliday = calendarEvents.value.some( event => @@ -560,7 +560,6 @@ param.append('day', day); if (!weatherStore.dailyWeatherList?.length) { - console.log(123); await weatherStore.getWeatherInfo(); //dailyWeatherList.value = weatherStore.dailyWeatherList; console.log('dailyWeatherList.value: ', dailyWeatherList.value); @@ -603,4 +602,9 @@ align-items: center; text-align: center !important; */ } + + /* 공휴일만 가로로 넗게 나오게 */ + ::v-deep(.fc-daygrid-event-harness:has(.holiday-event)) { + width: 100% !important; + }