From 90e8ff7ac09d9011eb6dc9467ee87de61fa3fcc7 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sat, 26 Jul 2025 16:10:55 +0200 Subject: Fix page layout: wrap long literals --- themes/conspiracy/assets/css/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'themes') diff --git a/themes/conspiracy/assets/css/style.css b/themes/conspiracy/assets/css/style.css index 2165255..2d39039 100644 --- a/themes/conspiracy/assets/css/style.css +++ b/themes/conspiracy/assets/css/style.css @@ -267,6 +267,14 @@ h3 { font-weight: 700; } +/* Prevent long literals from breaking the page layout's width */ +span.pre { + white-space: pre-wrap; + word-wrap: break-word; + overflow-x: auto; + overflow-wrap: anywhere; +} + body > header { z-index: 1; margin-top: 100px; -- cgit