Skip to content

Commit

Permalink
DatePickerCalendar Style 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
cause38 committed Apr 26, 2024
1 parent 962a4f3 commit 38c4e5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export const CalendarComponentDayText = ({
<div
className = {clsx(
"relative z-20 flex justify-center items-center leading-none text-body-02-bold md:text-body-01-bold text-black h-[2rem] md:h-[2.375rem]",
!isExceptionDate && disabled ? "text-gray-05" : "text-black",
isMarkedDate && "rounded-full w-[2rem] h-[2rem] md:w-[2.375rem] !text-white md:h-[2.375rem]",
!isExceptionDate && disabled ? "text-gray-05" : isMarkedDate ? "text-white" : "text-black",
isMarkedDate && "rounded-full w-[2rem] h-[2rem] md:w-[2.375rem] md:h-[2.375rem]",
isActiveDate && "bg-primary-03",
calendarDate.isToday && "bg-gray-03 w-[2rem] h-[2rem] md:w-[2.375rem] md:h-[2.375rem]",
isExceptionDate && "bg-gray-05",
Expand Down

0 comments on commit 38c4e5a

Please sign in to comment.