From 0fa6381c07d814235c929cb0fd5eb47cbbe4fbca Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 24 Jun 2021 10:41:48 +0200 Subject: [PATCH] Preserve white space sequences in log lines This allows e.g. the MOTD to have properly-formatted ASCII art. --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index 7b71fa6..653c83c 100644 --- a/style.css +++ b/style.css @@ -363,6 +363,9 @@ details summary[role="button"] { #buffer .logline-list { padding: 10px; } +#buffer .logline { + white-space: pre-wrap; +} #buffer .talk, #buffer .motd { color: var(--main-color); }