diff --git a/src/components/Calendar.css b/src/components/Calendar.css new file mode 100644 index 0000000..88bea0e --- /dev/null +++ b/src/components/Calendar.css @@ -0,0 +1,9 @@ +/* Hack the layout on mobile. */ +@media (max-width: 767px) { + .rbc-toolbar { + flex-direction: column; + } + .rbc-toolbar-label { + margin: 10px 0; + } +} diff --git a/src/components/Calendar.tsx b/src/components/Calendar.tsx index 23c3b09..0e69a6e 100644 --- a/src/components/Calendar.tsx +++ b/src/components/Calendar.tsx @@ -6,6 +6,8 @@ import 'moment/locale/en-gb'; import { EventType } from '../pim-types'; +import './Calendar.css'; + moment.locale('en-gb'); BigCalendar.momentLocalizer(moment); @@ -45,7 +47,7 @@ class Calendar extends React.PureComponent { render() { return ( -