From 1d7defd069ad3ded6b04fed5fd903f51edd227b6 Mon Sep 17 00:00:00 2001 From: 0880 <98263509+0880880@users.noreply.github.com> Date: Sat, 17 Jan 2026 15:27:11 +0330 Subject: [PATCH] Make game responsive --- index.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 3456a20..072a906 100644 --- a/index.html +++ b/index.html @@ -70,7 +70,14 @@ .game { width: 600px; - height: 600px; + aspect-ratio: 1/1; + } + + @media (max-width: 768px) { + .game { + width: 80%; + aspect-ratio: 1/1; + } }