The day of the week is not displayed in mobile view

The day of the week is not displayed in the mobile view. You can solve this problem by setting display:inline-block when on mobile, as specified in the following style.

media only screen and (max-width: 599px)
.gridDayHeader .gridDayHeaderDate, .gridDayHeader .gridDayHeaderName {
    display: none;
}

@shunsuke.takahashi Thank you for the suggestion. I will send some information through to our product and design team.