From d28be1c2cb43780a519d72581bbed0486c5675e5 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 11 Aug 2026 22:20:54 +0545 Subject: [PATCH] screenshots: scale images down to the width of the screen Most of the time this won't matter, but on mobile devices, it'll scale down to the width of the screen automatically to make it all visible. Legibility isn't super important in this scenario. --- style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style.css b/style.css index 2053598..904ef61 100644 --- a/style.css +++ b/style.css @@ -161,6 +161,10 @@ div#bottom span.menuitem { white-space: nowrap; } +#screenshots img { + max-width: 100%; +} + /* Mobile (i.e. phones) */ @media only screen and (max-width: 768px) { body { -- 2.47.3