diff --git a/src/components/month/calendarOpenDayEvents.component.ts b/src/components/month/calendarOpenDayEvents.component.ts index 1312ecf0e..c1345e3dc 100644 --- a/src/components/month/calendarOpenDayEvents.component.ts +++ b/src/components/month/calendarOpenDayEvents.component.ts @@ -43,12 +43,12 @@ import { CalendarEvent } from 'calendar-utils'; animations: [ trigger('collapse', [ transition('void => *', [ - style({ height: 0 }), - animate('150ms linear', style({ height: '*' })) + style({ height: 0, overflow: 'hidden' }), + animate('150ms', style({ height: '*' })) ]), transition('* => void', [ - style({ height: '*' }), - animate('150ms linear', style({ height: 0 })) + style({ height: '*', overflow: 'hidden' }), + animate('150ms', style({ height: 0 })) ]) ]) ]