From f8b927c012b322c2be03fbbe8d81f72ede9d514b Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Wed, 10 Dec 2025 17:43:10 +0000 Subject: [PATCH] Fix button row layout problem from the responsive layout cleanup before, that was causing them display stretched to full window width. Now they only shrink. --- frontend/src/assets/style.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/assets/style.css b/frontend/src/assets/style.css index 543d291..39b17f8 100644 --- a/frontend/src/assets/style.css +++ b/frontend/src/assets/style.css @@ -196,13 +196,12 @@ a:focus-visible { .button-row { display: flex; - flex-wrap: wrap; + flex-wrap: nowrap; gap: 0.75rem; justify-content: flex-start; } .button-row button { - flex: 1; min-width: 0; }