diff --git a/components/booking/AvailableTimes.tsx b/components/booking/AvailableTimes.tsx index 259eee10..4f7a5fd4 100644 --- a/components/booking/AvailableTimes.tsx +++ b/components/booking/AvailableTimes.tsx @@ -39,7 +39,7 @@ const AvailableTimes = ({ `/${user.username}/book?date=${slot.utc().format()}&type=${eventTypeId}` + (rescheduleUid ? "&rescheduleUid=" + rescheduleUid : "") }> - + {slot.format(timeFormat)} diff --git a/components/booking/DatePicker.tsx b/components/booking/DatePicker.tsx index 28c1fa56..8fa66ac4 100644 --- a/components/booking/DatePicker.tsx +++ b/components/booking/DatePicker.tsx @@ -171,20 +171,23 @@ const DatePicker = ({ }>
- {dayjs().month(selectedMonth).format("MMMM YYYY")} + + {dayjs().month(selectedMonth).format("MMMM")} + + {dayjs().month(selectedMonth).format("YYYY")}
-
diff --git a/styles/globals.css b/styles/globals.css index 2fbe03bf..316a2d8e 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -81,6 +81,16 @@ } } +::-moz-selection { + color: white; + background: black; +} + +::selection { + color: white; + background: black; +} + /* add padding bottom to bottom nav on standalone mode */ @media all and (display-mode: standalone) { .bottom-nav {