Oversize the canvas to cover scroll on android chrome.

[minor]
This commit is contained in:
voussoir 2022-03-21 19:02:09 -07:00
parent 9cf2103d52
commit 4b6ae138c8
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB

View file

@ -118,7 +118,10 @@ body.canvas_active .hide_when_dark { display: none; }
left: 0;
right: 0;
width: 100%;
height: 100%;
/* On android chrome, scrolling the page causes the nav bar to recede,
and that creates visible space below the canvas before the resize event
is called. We intentionally oversize it to keep everything hidden. */
height: 150%;
}
/******************************************************************************/