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) <noreply@anthropic.com>
This commit is contained in:
MVA Global Fret 2026-05-06 16:54:40 +02:00
parent 2b148a8682
commit 77baadffba

View File

@ -96,6 +96,8 @@
}
.confirmation-card .actions .btn {
flex: 1 1 200px;
justify-content: center;
text-align: center;
}
.confirmation-card .loader {
display: inline-block;