Bug

https://material.angular.io/components/sidenav/overview
on going through the above angular material's webpage , found that there is an overflow issue which can be solved by making the main div's display block from inline-flex
// previously
.docs-component-overview {
display: inline-flex;
}
// my solution
.docs-component-overview {
display: block;
}
just go to below link to see the error
https://material.angular.io/components/sidenav/overview