From efd177b6aa765142445dc1e157e63326f5a9baa5 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 18 Nov 2025 12:15:08 -0500 Subject: wasm: make logs resizable --- game/www/style.css | 10 ++++++++-- 1 file 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; -- cgit v1.2.3-freya