The first div of the page takes 100vh of height. I want to disable scroll while this div takes all the space of viewport.
For desktop devices, I did this and it works fine:
<div class="overlay" onmouseover="document.body.style.overflow='hidden';" onmouseout="document.body.style.overflow='auto';">
But it doesn't work on mobile devices.
Any ideas?