Hello! I recently punished Please login to see this link. to itch.io and it's working great. However, I can't for the life of me get the canvas to align vertically in portrait fullscreen mode (such as a mobile device).
My most successful attempt so far is this, which does align it correctly:
body {
margin: 0;
padding: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
... but it displaces the mouse/touch so the top-left becomes x0,y0, instead of starting at the canvas, thus rendering my buttons unclickable (unless you click several pixels above the button).
Not sure if this is a HTML5 or Fusion issue but I thought I'd ask here. Any ideas?