Fix page layout: wrap long literals

This commit is contained in:
jaseg 2025-07-26 16:10:55 +02:00
parent f5d03ed1cf
commit 90e8ff7ac0

View file

@ -267,6 +267,14 @@ h3 {
font-weight: 700; 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 { body > header {
z-index: 1; z-index: 1;
margin-top: 100px; margin-top: 100px;