This commit is contained in:
zadit
2025-02-18 22:39:26 +07:00
parent 9e7c80ddad
commit 066878ccbd
4 changed files with 87 additions and 15 deletions

20
public/styles.css Normal file
View File

@@ -0,0 +1,20 @@
/* Default styles - for mobile view */
#wrapper {
width: 100%;
max-width: 375px; /* Mobile width ratio */
margin: 0 auto;
padding: 10px;
box-sizing: border-box;
}
/* Desktop view - simulate mobile ratio on desktop */
@media (min-width: 1024px) {
#wrapper {
width: 100%;
max-width: 375px; /* Keep mobile width ratio on desktop */
margin: 0 auto;
padding: 10px;
box-sizing: border-box;
}
}