From ee749cf1bb999c1a9be7d200aeb4c1060fe3eba2 Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sun, 12 Oct 2025 23:59:33 -0400 Subject: [PATCH] Overflow pre tag content when larger than viewport width --- public_html/css/hpr.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public_html/css/hpr.css b/public_html/css/hpr.css index 5dbb956..808c0c9 100644 --- a/public_html/css/hpr.css +++ b/public_html/css/hpr.css @@ -598,6 +598,10 @@ fieldset > table td input[type="radio"] { width: min(calc(95vw + 0px), 640px); height: min(calc(calc(95vw + 0px) * var(--video-ratio)), 320px); } +#upload_method pre { + max-width: 80vw; + overflow-x: scroll; +} #search form { flex: 1 1 100%; }