diff --git a/src/components/common/fullCalendar/FullCalendarStyle.ts b/src/components/common/fullCalendar/FullCalendarStyle.ts index c752ce7..7c3cd9a 100644 --- a/src/components/common/fullCalendar/FullCalendarStyle.ts +++ b/src/components/common/fullCalendar/FullCalendarStyle.ts @@ -155,6 +155,11 @@ const FullCalendarLayout = styled.div<{ size: string }>` border-radius: 8px 8px 0 0; } + /* 오늘 배경색 없애기 */ + .fc .fc-day-today { + background: none; + } + /* 주말 색 다르게 */ .fc .fc-day-sun, .fc .fc-day-sat { @@ -207,11 +212,6 @@ const FullCalendarLayout = styled.div<{ size: string }>` border: none; } - /* 오늘 배경색 없애기 */ - .fc .fc-day-today { - background: none; - } - .fc-timegrid-event { border-radius: 4px; }