refactor: non-responsive fixed width layout (#637)

The CSS sets a fixed width of `960px` for the `main` element. This overrides the responsiveness intended by the viewport meta tag, causing horizontal scrolling on mobile devices or small windows.

Affected files: index.html

Signed-off-by: tryboi <270171460+tryboi@users.noreply.github.com>
This commit is contained in:
tryboi
2026-04-09 19:18:54 +00:00
committed by GitHub
parent bfb7d0d758
commit 988b13e0be
+2 -1
View File
@@ -12,7 +12,8 @@
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
font-size: 16px;
line-height: 1.5;
width: 960px;
max-width: 960px;
width: 100%;
margin: auto;
}
select