diff --git a/src/components/calendar/CalendarPage.tsx b/src/components/calendar/CalendarPage.tsx index 4e78494..0929819 100644 --- a/src/components/calendar/CalendarPage.tsx +++ b/src/components/calendar/CalendarPage.tsx @@ -3,6 +3,7 @@ import moment from "moment"; import "react-big-calendar/lib/css/react-big-calendar.css"; import { + Box, Divider, FormControl, InputLabel, @@ -107,10 +108,17 @@ const CalendarPage: React.FC = () => { }; return ( - <> + + - + User @@ -142,14 +150,20 @@ const CalendarPage: React.FC = () => { { + const backgroundColor = "IndianRed"; + const borderColor = "White"; + return { style: { backgroundColor, borderColor } }; + }} /> - + + ); }; diff --git a/src/styles.css b/src/styles.css index 3fc5a1e..449fd03 100644 --- a/src/styles.css +++ b/src/styles.css @@ -10,3 +10,7 @@ html, body { overflow: hidden; } + +.rbc-calendar { + font-family: "Roboto","Helvetica","Arial",sans-serif; +}