From b609d63935e23c175ad07b9117d4641e638e9b66 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 03:02:46 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/components/forms/custom-form-builder.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/components/forms/custom-form-builder.tsx b/src/components/forms/custom-form-builder.tsx index 31c5492..250f443 100644 --- a/src/components/forms/custom-form-builder.tsx +++ b/src/components/forms/custom-form-builder.tsx @@ -201,6 +201,7 @@ interface SavedTemplate { font_family: string; font_size_pt: number; line_height: number; + margin_inches?: number; signature_blocks: Array<{ name: string; title?: string }>; fields: FormFieldDef[]; updated_at: string; @@ -215,6 +216,15 @@ const LINE_HEIGHTS = [ { value: 2.0, label: "2.0" }, ]; +const MARGIN_OPTIONS = [ + { value: 0.5, label: '0.5"' }, + { value: 0.75, label: '0.75"' }, + { value: 1.0, label: '1"' }, + { value: 1.25, label: '1.25"' }, + { value: 1.5, label: '1.5"' }, + { value: 2.0, label: '2"' }, +]; + export function CustomFormBuilder() { const [title, setTitle] = useState("Official Notice"); const [hideTitle, setHideTitle] = useState(false);