From 041f42a792c8e6b8e99ad91b4b96d0be14813137 Mon Sep 17 00:00:00 2001 From: Adam Shiervani Date: Tue, 12 Aug 2025 14:29:23 +0200 Subject: [PATCH] fix(ui): update spacing and font weight in FieldLabel component --- ui/src/components/FieldLabel.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/src/components/FieldLabel.tsx b/ui/src/components/FieldLabel.tsx index f9065a1..dc7018d 100644 --- a/ui/src/components/FieldLabel.tsx +++ b/ui/src/components/FieldLabel.tsx @@ -27,7 +27,7 @@ export default function FieldLabel({ > {label} {description && ( - + {description} )} @@ -36,11 +36,11 @@ export default function FieldLabel({ } else if (as === "span") { return (
- + {label} {description && ( - + {description} )} @@ -49,4 +49,4 @@ export default function FieldLabel({ } else { return <>; } -} \ No newline at end of file +}