diff options
| -rw-r--r-- | game/www/style.css | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/game/www/style.css b/game/www/style.css index 82ae311..09d3e3a 100644 --- a/game/www/style.css +++ b/game/www/style.css @@ -87,10 +87,16 @@ body, html { border-radius: 5px; color: var(--fg); padding: 5px; + width: 600px; + height: 300px; + min-width: 600px; + min-height: 300px; + resize: both; + overflow: auto; .content { - width: 600px; - height: 200px; + height: calc(100% - 30px); + width: calc(100% - 10px); font-size: 15px; margin: 5px; padding: 5px; |