wait for the css animation to complete, then trigger a window resize event.
toggleSidenav() { this.isExpanded = !this.isExpanded; setTimeout(() => { window.dispatchEvent(new Event('resize')); }, 400); }