From 37571a0cee7d4e77f6cada601dd4d2f9e2366a8f Mon Sep 17 00:00:00 2001 From: cassowary Date: Mon, 27 Jul 2026 14:17:34 -0700 Subject: [PATCH] overflow-x scroll on code display --- static/gitweb-site.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/static/gitweb-site.css b/static/gitweb-site.css index 9a0a523..d6f7e8a 100644 --- a/static/gitweb-site.css +++ b/static/gitweb-site.css @@ -2,11 +2,16 @@ input[title^="Search project"] { max-width: 50%; } -div.page_header, div.page_footer { +div.page_header, +div.page_footer { height: unset; overflow: auto; } +div.page_body { + overflow-x: scroll; +} + @media screen and (max-width: 720px) { body { box-sizing: border-box; -- 1.8.3.1