From 02b4ad06ca16da3561da42010d85da43ee01e8d5 Mon Sep 17 00:00:00 2001 From: Oliver Hofmann Date: Sun, 10 May 2026 10:18:27 +0200 Subject: [PATCH] Fix pre whitespace, log-pre-error margin, error log heading --- frontend/src/main.jsx | 6 ++---- frontend/src/styles.css | 1 + 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/src/main.jsx b/frontend/src/main.jsx index 2017316..9c1437a 100644 --- a/frontend/src/main.jsx +++ b/frontend/src/main.jsx @@ -200,12 +200,10 @@ function SettingsSection({ password, refreshKey }) {

Nutzungslog (letzte 10 Einträge)

-
-          {usageLog.length > 0 ? usageLog.join('\n') : '— keine Einträge —'}
-        
+
{usageLog.length > 0 ? usageLog.join('\n') : '— keine Einträge —'}
{errorLog.length > 0 && ( <> -

Fehlerlog

+

Fehlerlog (letzte 10 Einträge)

{errorLog.join('\n')}
)} diff --git a/frontend/src/styles.css b/frontend/src/styles.css index a61ff7a..b55cfe0 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -484,4 +484,5 @@ tr:hover { .log-pre-error { background: #2d1b1b; color: #f5a0a0; + margin-bottom: 0; }