Prevent overflow of overlays

Fixes #82.
This commit is contained in:
Florine W. Dekker 2020-08-09 02:21:38 +02:00
parent 0078e94c3b
commit f2a0fd69c6
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "minesweeper",
"version": "0.79.1",
"version": "0.79.2",
"description": "Just Minesweeper!",
"author": "Felix W. Dekker",
"browser": "dist/bundle.js",

View File

@ -57,6 +57,8 @@ form {
.overlay {
padding: 6rem;
max-height: 80%;
overflow: auto;
background-color: white;
}