"Play" page should have lock scrolled

Ah yes this is a mac issue and can be fixed by applying overscroll-behavior: none; to the CSS of the body.
Until this is implemented officially, feel free to paste this into your browser console when opening the web simulator to temporarily fix it:

document.body.style.overscrollBehavior = 'none'

Note that this will only last until you close that tab :playdate_wink:

3 Likes