Skip to content

Commit

Permalink
Merge pull request #269 from TEAM-DAWM/feat/#264/allday-event-add
Browse files Browse the repository at this point in the history
[FIX] 주말 색상 변경
  • Loading branch information
seong-hui authored Jul 20, 2024
2 parents 5caef6a + b16afee commit 75e2840
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/common/fullCalendar/FullCalendarStyle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -207,11 +212,6 @@ const FullCalendarLayout = styled.div<{ size: string }>`
border: none;
}
/* 오늘 배경색 없애기 */
.fc .fc-day-today {
background: none;
}
.fc-timegrid-event {
border-radius: 4px;
}
Expand Down

0 comments on commit 75e2840

Please sign in to comment.