From 3b602ddb5391736785506122b7c4c905e0e40859 Mon Sep 17 00:00:00 2001 From: librelad Date: Wed, 26 Aug 2026 02:31:55 +0100 Subject: [PATCH] style(setup): space the drive badge from the facts that follow it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The badge had margin-left only, so on a one-line card the pill sat flush against the drive size — "default 911.9G". Symmetric margin now, since text follows it on the same line as well as preceding it. Co-Authored-By: Claude Opus 5 --- .../libreportal/frontend/core/setup/css/setup-wizard.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/containers/libreportal/frontend/core/setup/css/setup-wizard.css b/containers/libreportal/frontend/core/setup/css/setup-wizard.css index 1a49d08..b770ed9 100755 --- a/containers/libreportal/frontend/core/setup/css/setup-wizard.css +++ b/containers/libreportal/frontend/core/setup/css/setup-wizard.css @@ -1219,7 +1219,9 @@ body.setup-wizard-open { because "why isn't my drive listed?" is a support burden we don't need. */ .setup-storage-badge { display: inline-block; - margin-left: 8px; + /* Symmetric: the drive facts follow the badge on the same line, and with a + left margin only the pill sat flush against "911.9G". */ + margin: 0 8px; padding: 1px 7px; border-radius: 10px; font-size: 0.72em;