From 8989d20a897e61ee64dd4cc46a503d4381bb7b77 Mon Sep 17 00:00:00 2001 From: Viktor Miller Date: Fri, 6 Feb 2026 23:05:35 +0900 Subject: [PATCH] fix(08): add missing small-1 and small-8 grid column definitions - checkbox_anzahl field type uses small-1/small-8/small-3 layout - Only small-3 was defined, causing broken layout for those fields --- assets/css/form.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/assets/css/form.css b/assets/css/form.css index f9676d3..c46207a 100644 --- a/assets/css/form.css +++ b/assets/css/form.css @@ -44,6 +44,10 @@ } } +.umzugsliste-wrapper .small-1.columns { + width: 8.33333%; +} + .umzugsliste-wrapper .small-3.columns { width: 25%; } @@ -52,6 +56,10 @@ width: 33.33333%; } +.umzugsliste-wrapper .small-8.columns { + width: 66.66667%; +} + .umzugsliste-wrapper .small-9.columns { width: 75%; }