Open any menu, and the browser vertical scrollbar disappears. This is really disorienting for my case where I have a right aligned appbar #avatar that opens a small menu (it bounces the screen).
It seems that when the menu opens, <body> changes to <body style="overflow: hidden; padding-right: 15px;">
next branch, menus demo http://localhost:3000/#/component-demos/menus
next branch a38068f90c28ee240f0622d40a87f6d888dd74e2


Should be fixed by #7239
When I haven't got scrollbar on the page, the padding-right: 15px is applied to body element and the whole website layout bounces to the left with 15px width stripe on the right side...

I noticed the same behaviour @ketysek. Those 15px padding-right are also applied to appBar components making them bouncing when you open a modal or selectbox. Should we have to open a new issue @oliviertassinari for this ?
@marcoturi We have add a new issue for this #8710.
Thank you @oliviertassinari, your code fix the issue. However if you have elements in the page aligned with margin: 0 auto; you will still get the bounce effect on them. To fix it i had to use flexbox to align them (i.e. justifyContent: 'center'). Hope it helps.
@oliviertassinari I still have the exact problem on v4
You should be able to find an open issue on this topic: #17353.
Most helpful comment
When I haven't got scrollbar on the page, the padding-right: 15px is applied to body element and the whole website layout bounces to the left with 15px width stripe on the right side...
