I\'m not able to prevent the main body content from scrolling while a fixed position overlay is showing. Similar questions have been asked many times, but all of the techniq
When your overlay is opened, you can add a class like prevent-scroll to body to prevent scrolling of elements behind your overlay:
prevent-scroll
body
body.prevent-scroll { position: fixed; overflow: hidden; width: 100%; height: 100%; }
https://codepen.io/claudiojs/pen/ZKeLvq