From a9c4c653d269eb46a1bad9fe4b06d51a164054e5 Mon Sep 17 00:00:00 2001 From: Pierre Date: Mon, 30 Mar 2026 15:29:25 +0200 Subject: [PATCH] Grid enlargement --- web/assets/css/game.css | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/web/assets/css/game.css b/web/assets/css/game.css index bf9bc4c..636c7c2 100644 --- a/web/assets/css/game.css +++ b/web/assets/css/game.css @@ -5,8 +5,8 @@ } html, body { - width: 100%; - height: 100%; + width: 100vw; + height: 100vh; overflow: hidden; } @@ -48,8 +48,10 @@ main { .cell { border: 1px solid #333333; - width: 30px; - height: 30px; + min-width: 60px; + width: auto; + min-height: 60px; + height: auto; transition: all 0.2s ease; display: flex; align-items: center; @@ -90,15 +92,6 @@ main { border-color: #654321; } -.door::after { - content: ''; - position: absolute; - width: 60%; - height: 60%; - border: 2px solid #FFD700; - border-radius: 3px; -} - .button { background: radial-gradient(circle at 35% 35%, #FF4444 0%, #CC0000 100%); border-color: #990000;