From 9626b424439256aed821f9a09eb0ff886469d938 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Sat, 8 Mar 2025 03:27:59 +0200 Subject: [PATCH] style(next): add a gap between consecutive radios / check boxes --- src/public/stylesheets/theme-next/forms.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/public/stylesheets/theme-next/forms.css b/src/public/stylesheets/theme-next/forms.css index 801556141..d67995237 100644 --- a/src/public/stylesheets/theme-next/forms.css +++ b/src/public/stylesheets/theme-next/forms.css @@ -428,6 +428,12 @@ optgroup { user-select: none; } + /* Add a gap between consecutive radios / check boxes */ + label.tn-radio + label.tn-radio, + label.tn-checkbox + label.tn-checkbox { + margin-left: 12px; + } + /* The original input */ label.tn-radio > input[type="radio"], label.tn-checkbox > input[type="checkbox"] {