From 9889b0d464dcb0e9a785f7041cc2d36dcfcb9fbe Mon Sep 17 00:00:00 2001 From: Tobias Jordans Date: Thu, 30 Sep 2021 21:42:31 +0200 Subject: [PATCH] Checkboxes: Margin only bottom We only need it to the bottom and left/right mess with w-full in this css-setup. --- UI/Input/Checkboxes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Input/Checkboxes.ts b/UI/Input/Checkboxes.ts index 32386eea3a..affad21920 100644 --- a/UI/Input/Checkboxes.ts +++ b/UI/Input/Checkboxes.ts @@ -64,7 +64,7 @@ export default class CheckBoxes extends InputElement { "w-full", "border", "border-gray-400", - "m-1" + "mb-1" ); wrapper.appendChild(input); wrapper.appendChild(label);