From 1c77dbeef58bcc8dbcc7d499e4858efbf0194531 Mon Sep 17 00:00:00 2001 From: Anthony Wang Date: Thu, 11 Jan 2024 02:40:14 +0000 Subject: [PATCH] Revert "Use max-width instead of width and min()" This reverts commit 997820db57732fad6f5769cfd29b027ffb09e443. Using max-width makes the site look terrible on mobile since the text fills the entire screen instead of only 90% --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index ebfb738..e83e0ab 100644 --- a/style.css +++ b/style.css @@ -1,6 +1,6 @@ body { font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace; - max-width: 720px; + width: min(720px, 90%); margin-left: auto; margin-right: auto; text-align: center;