From 77baadffba5635b30f859fcc0227234711903f46 Mon Sep 17 00:00:00 2001 From: MVA Global Fret Date: Wed, 6 May 2026 16:54:40 +0200 Subject: [PATCH] confirmation.html: center button text in action row The .btn class uses display:inline-flex with align-items:center but no justify-content, so text stuck to the left when the parent flex stretched the buttons to fill the row. Add justify-content:center scoped to the confirmation card actions. Co-Authored-By: Claude Opus 4.7 (1M context) --- confirmation.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/confirmation.html b/confirmation.html index 52d49ec..c3e37ac 100644 --- a/confirmation.html +++ b/confirmation.html @@ -96,6 +96,8 @@ } .confirmation-card .actions .btn { flex: 1 1 200px; + justify-content: center; + text-align: center; } .confirmation-card .loader { display: inline-block;