Comments

Log in with itch.io to leave a comment.

you may want to add a fullscreen button or prevent the wheel event from propagating: rn the itch page scrolls down when you change tools

thanks, I added the fullscreen. Any idea how to stop the page scrolling? I've tried css

#game_drop{

 overflow: hidden;

}

but that doesn't seem to work.

you'd need to hide the overflow on `body` if you wanted to handle it via css, but i wouldn't recommend that since it would break the page in other ways (e.g. people couldn't see comments)