From 81e78ef24c6428bdab61eb908c7b07c9742823e0 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Mon, 12 May 2025 16:57:43 -0700 Subject: [PATCH] Fix auth padding --- src-web/components/DynamicForm.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src-web/components/DynamicForm.tsx b/src-web/components/DynamicForm.tsx index 9011678d..ce4817b5 100644 --- a/src-web/components/DynamicForm.tsx +++ b/src-web/components/DynamicForm.tsx @@ -65,6 +65,7 @@ export function DynamicForm>({ autocompleteFunctions={autocompleteFunctions} autocompleteVariables={autocompleteVariables} data={data} + className="pb-4" // Pad the bottom to look nice /> ); } @@ -77,15 +78,17 @@ function FormInputs>({ setDataAttr, data, disabled, + className, }: Pick< Props, 'inputs' | 'autocompleteFunctions' | 'autocompleteVariables' | 'stateKey' | 'data' > & { setDataAttr: (name: string, value: JsonPrimitive) => void; disabled?: boolean; + className?: string; }) { return ( - + {inputs?.map((input, i) => { if ('hidden' in input && input.hidden) { return null;