From ce7860ebc6a9a0c7759afea78b8fdf0b541813b7 Mon Sep 17 00:00:00 2001 From: Pagwin Date: Mon, 28 Oct 2024 15:07:26 -0400 Subject: [PATCH] pre wasn't kept in line with #content width so was overflowing --- static/css/layout.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/static/css/layout.css b/static/css/layout.css index 2a9f672..86e94d6 100644 --- a/static/css/layout.css +++ b/static/css/layout.css @@ -62,7 +62,11 @@ blockquote { pre { min-height: 2em; - max-width: calc(100% - 2em); + /* + * Not sure why this isn't the same as the #content width. + * Is the font size different for some reason? + * */ + max-width: 82em; width: fit-content; overflow:scroll; /*background: #444;*/