From 0091bfe7e6e262c8d21e4fa2580ef8ec8d1a034e Mon Sep 17 00:00:00 2001 From: Christophe <christophe.misc+git@protonmail.ch> Date: Wed, 20 Sep 2023 15:35:12 +0200 Subject: [PATCH] fix(CheckboxInput): align checkbox and label a little nicer --- frontend/components/template/CheckboxInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/template/CheckboxInput.tsx b/frontend/components/template/CheckboxInput.tsx index 364f837..9069ad9 100644 --- a/frontend/components/template/CheckboxInput.tsx +++ b/frontend/components/template/CheckboxInput.tsx @@ -17,7 +17,7 @@ const CheckboxInput: FC<CheckboxInput> = ({ truthy = true, falsy = false, }) => { - const classes = clsx('rounded input mt-0 mb-1 mr-2', flagged && 'border-warning', className); + const classes = clsx('rounded input mt-0 mb-2 mr-2', flagged && 'border-warning', className); return ( <div> -- GitLab