From b7d0f8f992ea6f7ad6bcb9c6c7fcd40ca511eca1 Mon Sep 17 00:00:00 2001 From: Gautam Panakkal Date: Thu, 3 Apr 2025 20:27:40 -0700 Subject: [PATCH] Add margin to separate radio buttons and checkboxes from their labels --- web/xfa_layer_builder.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/web/xfa_layer_builder.css b/web/xfa_layer_builder.css index 72009759b..ac8bc0666 100644 --- a/web/xfa_layer_builder.css +++ b/web/xfa_layer_builder.css @@ -157,6 +157,14 @@ max-height: 100%; } +:is(.xfaRight) > :is(.xfaRadio, .xfaCheckbox) { + margin-right: 4px; +} + +:is(.xfaLeft) > :is(.xfaRadio, .xfaCheckbox) { + margin-left: 4px; +} + .xfaTop { display: flex; flex-direction: column;