Scroll Bar with Scale

I am trying out the scale manager, and I have my game pretty much doing what I expect when I resize the window, except that there is always a scroll bar. Anyone know how to fix this so that I can scale without that there?
https://apbiomobile.netlify.com/

phaserQScrollCode

Hello @PappasBiology
Can you try to delete ur height: 100% on your body please :slight_smile:

With style:

Without Style:

1 Like

I suggest you add this to your index.html file

<style>
  html,
  body {
      margin: 0px;
      padding: 0px;
      overflow: hidden;
      height: 100%;
  }
</style>
2 Likes