From 0192cbf8713953bc40eee6a320c0dae17df28237 Mon Sep 17 00:00:00 2001 From: codex Date: Mon, 1 Jun 2026 02:26:55 +0000 Subject: [PATCH] style: fix hardcoded widths to make preservation site responsive on mobile --- docs/index.html | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/index.html b/docs/index.html index 4df98fc..de8e745 100644 --- a/docs/index.html +++ b/docs/index.html @@ -55,11 +55,16 @@ color: #333; } header { - width: 640px; + max-width: 640px; + width: 100%; + box-sizing: border-box; margin: auto; } section { - width: 640px; + max-width: 640px; + width: 100%; + box-sizing: border-box; + padding: 0 15px; margin: auto; } section p { @@ -69,7 +74,8 @@ color: #333; } section img { - max-width: 640px; + max-width: 100%; + height: auto; } footer { padding: 0 20px;