I am using Material dialog in my project to display list of options.
Material dialog blocks the scroll bar of the page by defaul.
When I have a lot of options to display some of the items might fall out of the screen and in order to see them you need to scroll down, hence I had to make the scrolling bar avaiable using scrollStrategy.
However if a user clicks on the options button, then scroll down or up the dialog will be always on the screen and doesn't move with scrolling direction to keep its absolute position (under the triggering button) so my question how can I change this?
I have created a small angular project to demonstrate my issue; https://stackblitz.com/edit/angular-rpatij

position: fixed. - Roberto ZvjerkovićscrollStrategies.noop(). - SMH