From b50da8b30f72d376b7708d111f635a54145dad8c Mon Sep 17 00:00:00 2001 From: Gabriel Date: Tue, 21 Mar 2023 22:26:39 -0400 Subject: [PATCH] minor fix for code blocks --- static/css/theme.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/static/css/theme.css b/static/css/theme.css index aa9528d..23b4568 100644 --- a/static/css/theme.css +++ b/static/css/theme.css @@ -311,5 +311,10 @@ blockquote { } code{ font-family: monospace; - color:var(--theme-accent) + color:var(--theme-accent); + white-space:break-spaces; + word-wrap: normal; +} +article pre { + width:100%; }