From 18e29983c5272464371463c8202b596ef62ea031 Mon Sep 17 00:00:00 2001 From: librelad Date: Thu, 28 May 2026 14:38:01 +0100 Subject: [PATCH] ux(services): left-align the Show/Hide logs toggle in service details Was centred in the open details panel; move it to the left edge so it lines up with the rest of the panel content. Signed-off-by: librelad --- containers/libreportal/frontend/css/services.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/libreportal/frontend/css/services.css b/containers/libreportal/frontend/css/services.css index 7154dfc..24fd2a5 100644 --- a/containers/libreportal/frontend/css/services.css +++ b/containers/libreportal/frontend/css/services.css @@ -245,11 +245,11 @@ body:not(.lp-ui--advanced) .service-rich { display: none; } /* "Show logs" / "Hide logs" toggle sitting at the very bottom of the open .task-details panel. Logs are off by default — the user opts in per service so a row of expanded services doesn't open one SSE stream - each. Centred and given a little top breathing room so it reads as + each. Left-aligned and given a little top breathing room so it reads as a footer action rather than another inline button. */ .service-logs-toggle { display: flex; - justify-content: center; + justify-content: flex-start; margin-top: 8px; margin-bottom: 4px; }