From c235aad941b272f4fdc7c24bb5c18a1eaefbffb2 Mon Sep 17 00:00:00 2001 From: Andrew Stowell Date: Sat, 17 Jan 2026 14:02:23 -0500 Subject: [PATCH] single column if narrow enough --- templates/_style.html.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/_style.html.twig b/templates/_style.html.twig index f5048ac..ddf6ab0 100644 --- a/templates/_style.html.twig +++ b/templates/_style.html.twig @@ -6,8 +6,8 @@ body { display: table-cell; vertical-align: middle; } h1 { font-size: 2.5em; font-weight: normal; text-align: center; } p { color: {{ env.error_color }}; text-align: center; } form { align-items: baseline; display: flex; flex-wrap: wrap; justify-content: center; } -form div { width: 45%; } -div.right { text-align: right; } +form div { width: 45%; min-width: 300px; } +div.right { text-align: right; margin-top: 1em; padding-bottom: 0 } div.center { text-align: center; } div.hidden { display: none; } span { cursor: pointer; font-size: 0.75em; text-decoration: underline; }