From d90f4e181accb0540fe1a0b7d0d864bda7f8b88c Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Sun, 27 Apr 2025 14:52:15 +0200 Subject: [PATCH] css: fallback to 'monospace' for AP log view (#461) Log view on firmware update page was not printed using fixed width font on my system. Now it is. Closes: #460 --- ESP32_AP-Flasher/wwwroot/main.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ESP32_AP-Flasher/wwwroot/main.css b/ESP32_AP-Flasher/wwwroot/main.css index 306f2efd..ecdb0e77 100644 --- a/ESP32_AP-Flasher/wwwroot/main.css +++ b/ESP32_AP-Flasher/wwwroot/main.css @@ -876,7 +876,7 @@ h4 { .console { width: 450px; background-color: black; - font-family: 'lucida console', 'ui-monospace'; + font-family: 'lucida console', 'ui-monospace', 'monospace'; color: white; padding: 5px 10px; padding-bottom: 25px; @@ -1008,4 +1008,4 @@ h4 { padding: 1px 1px; } -} \ No newline at end of file +}