From 087cf3b06c476fb544432ed7d35f520378772f05 Mon Sep 17 00:00:00 2001 From: Eric Gullickson <16152721+ericgullickson@users.noreply.github.com> Date: Sun, 4 Jan 2026 15:14:08 -0600 Subject: [PATCH] fix: Add bottom padding to document form grid container (refs #19) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added pb-4 to the grid container to create consistent spacing between the last form field (file input) and the action buttons below. The previous approach of adding margin to a grid item didn't work as expected due to CSS Grid layout behavior. Adding padding to the grid container itself ensures reliable spacing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontend/src/features/documents/components/DocumentForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/features/documents/components/DocumentForm.tsx b/frontend/src/features/documents/components/DocumentForm.tsx index 6351bb4..753ce82 100644 --- a/frontend/src/features/documents/components/DocumentForm.tsx +++ b/frontend/src/features/documents/components/DocumentForm.tsx @@ -156,7 +156,7 @@ export const DocumentForm: React.FC = ({ onSuccess, onCancel return (
-
+