style(next): add a gap between consecutive radios / check boxes

This commit is contained in:
Adorian Doran 2025-03-08 03:27:59 +02:00
parent 15d3285a90
commit 9626b42443

View File

@ -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"] {