diff --git a/components/booking/AvailableTimes.tsx b/components/booking/AvailableTimes.tsx index fa45e750..0f074293 100644 --- a/components/booking/AvailableTimes.tsx +++ b/components/booking/AvailableTimes.tsx @@ -25,7 +25,7 @@ const AvailableTimes = ({ return (
- {date.format("dddd DD MMMM YYYY")} + {date.format("dddd DD MMMM YYYY")}
{slots.length > 0 && slots.map((slot) => ( diff --git a/components/booking/DatePicker.tsx b/components/booking/DatePicker.tsx index cfcc6a79..62907e16 100644 --- a/components/booking/DatePicker.tsx +++ b/components/booking/DatePicker.tsx @@ -93,7 +93,7 @@ const DatePicker = ({ (selectedDate && selectedDate.isSame(inviteeDate.date(day), "day") ? " bg-blue-600 text-white-important" : !isDisabled(day) - ? " bg-blue-50" + ? " bg-blue-50 dark:bg-gray-900 dark:bg-opacity-30" : "") }> {day} @@ -103,9 +103,15 @@ const DatePicker = ({ }, [selectedMonth, inviteeTimeZone, selectedDate]); return selectedMonth ? ( -
+
- {dayjs().month(selectedMonth).format("MMMM YYYY")} + + {dayjs().month(selectedMonth).format("MMMM YYYY")} +