From 988b13e0be827e6e3714ca09f93d19bbc0f21b7d Mon Sep 17 00:00:00 2001 From: tryboi Date: Thu, 9 Apr 2026 15:18:54 -0400 Subject: [PATCH] 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> --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index f59dc4f..075ecfa 100644 --- a/index.html +++ b/index.html @@ -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