From cb610a6b4a59abde078278e770beecde5c52a567 Mon Sep 17 00:00:00 2001 From: Stef Dunlap Date: Mon, 30 Jan 2023 10:30:19 -0500 Subject: [PATCH] Fix code horizontal overflow --- static/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/style.css b/static/style.css index 7c26b64..0873156 100644 --- a/static/style.css +++ b/static/style.css @@ -46,3 +46,7 @@ blockquote { padding-left: 1em; border-left: solid grey 3px; } + +pre { + overflow-x: auto; +}