Auto-promote: Merge develop to staging after successful dev tests

This commit is contained in:
github-actions[bot]
2025-07-01 21:40:50 +00:00
committed by GitHub
2 changed files with 6 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2048 Game - v2.0.4</title> <title>2048 Game - v2.0.5</title>
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="favicon.png"> <link rel="icon" type="image/png" href="favicon.png">
</head> </head>

View File

@@ -26,7 +26,7 @@ h1.title {
} }
.container { .container {
width: 512px; width: 580px;
margin: 0 auto; margin: 0 auto;
padding: 20px; padding: 20px;
} }
@@ -387,15 +387,15 @@ h1.title {
} }
/* Additional responsive improvements */ /* Additional responsive improvements */
@media screen and (max-width: 600px) { @media screen and (max-width: 640px) {
body { body {
padding: 20px 10px; padding: 20px 10px;
} }
.container { .container {
width: 100%; width: 100%;
max-width: 480px; max-width: 520px;
padding: 10px; padding: 15px;
} }
.header h1 { .header h1 {
@@ -407,5 +407,6 @@ h1.title {
max-width: 480px; max-width: 480px;
height: auto; height: auto;
aspect-ratio: 1; aspect-ratio: 1;
margin: 0 auto;
} }
} }