From dd352990a2e59650d0493fa4a090125f7c6299ca Mon Sep 17 00:00:00 2001 From: nmoskaleva Date: Thu, 12 Feb 2026 09:37:19 +0100 Subject: [PATCH] Update styles Minor CSS fixes to align with the design system --- src/components/FormFields/Checkbox/Checkbox.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/components/FormFields/Checkbox/Checkbox.tsx b/src/components/FormFields/Checkbox/Checkbox.tsx index e778fb5f..7bf39c57 100644 --- a/src/components/FormFields/Checkbox/Checkbox.tsx +++ b/src/components/FormFields/Checkbox/Checkbox.tsx @@ -16,8 +16,7 @@ type BaseCheckboxProps = { }; interface CheckboxProps - extends Omit, 'type'>, - BaseCheckboxProps { + extends Omit, 'type'>, BaseCheckboxProps { name: string; } @@ -58,7 +57,7 @@ export function Checkbox(props: CheckboxProps) { variants[variant], )} > -
+
{(error || helpText) && (
{error && ( - + {error} )} {helpText && ( - + {helpText} )}