From 26ad049b424e2f37a801f1810d4a2193e0d38f68 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Wed, 19 Aug 2026 11:05:00 +0200 Subject: [PATCH] css: widen the text column on the news page by fourteen percent This comes closest to the intended width of most news items (on a wide-enough screen). Also, do not wrap text inside tags. --- style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 904ef61..0b08c2a 100644 --- a/style.css +++ b/style.css @@ -49,6 +49,10 @@ a:active { color: var(--nano-a-inverted-color); } +tt { + text-wrap-mode: nowrap; +} + * { box-sizing: border-box; } @@ -108,7 +112,7 @@ div#news ul.details { flex-basis: 100%; flex-grow: 1; flex-shrink: 0; - max-width: 500px; + max-width: 570px; margin-top: 1em; margin-bottom: 0; padding-right: 0.5em; -- 2.47.3