Vuetify Version: 2.1.0
Last working version: 1.5.18
Vue Version: 2.6.10
Browsers: Chrome 77.0.3865.90
OS: Mac OS 10.14.5
Create v-calendar, add some events, and remove fixed height of a root element (for ex. remove "height" from v-sheet". (MONTH view)
v-calendar should render normally with minimum height as its content (Events and so) required. (Same as in Chrome)
Whole month view is rendered over itself and unreadable, unlike in Chrome.
https://codepen.io/GeorgeZizka/pen/JjjPYzr?&editable=true&editors=101
Chrome:

Safari:

I ended up fixing this with:
.v-calendar-weekly__week {
height: unset;
}
Thank you for the information!
Most helpful comment
I ended up fixing this with:
.v-calendar-weekly__week {
height: unset;
}