From 97a68d5ed9ecf44b90bf5bdd127e4c052995b4e1 Mon Sep 17 00:00:00 2001 From: BenjaVR Date: Mon, 18 Feb 2019 00:16:10 +0100 Subject: [PATCH] Fix to make calendar a little more responsive on mobile --- src/index.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/index.scss b/src/index.scss index 2aea8a0..55cdc44 100644 --- a/src/index.scss +++ b/src/index.scss @@ -20,3 +20,9 @@ body { .ant-fullcalendar-header > .ant-radio-group { display: none; // Fix to not show the month/year switch on the calendar component. } + +.ant-fullcalendar.ant-fullcalendar-full.ant-fullcalendar-fullscreen { + // Fix to make calendar a little more responsive on mobile. + overflow-x: scroll; + overflow-y: hidden; +}