Make game responsive

This commit is contained in:
0880
2026-01-17 15:27:11 +03:30
parent 8e14646806
commit 1d7defd069

View File

@@ -70,7 +70,14 @@
.game { .game {
width: 600px; width: 600px;
height: 600px; aspect-ratio: 1/1;
}
@media (max-width: 768px) {
.game {
width: 80%;
aspect-ratio: 1/1;
}
} }
</style> </style>
</head> </head>