From 8dc3ef34b021b010aa7a4869687d9811c5493caa Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 27 Jan 2026 15:03:15 -0600 Subject: [PATCH] Fix PDF status pill vertical centering with asymmetric padding Use 4px top / 5px bottom padding to compensate for Arial font metrics where the visual center differs from mathematical center. The extra bottom padding pushes the text up to appear visually centered. Co-Authored-By: Claude Opus 4.5 --- frontend/components/PDFReport.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/PDFReport.tsx b/frontend/components/PDFReport.tsx index 320e95d..5e22cf0 100755 --- a/frontend/components/PDFReport.tsx +++ b/frontend/components/PDFReport.tsx @@ -75,7 +75,7 @@ const RagStatusBadge: React.FC<{ status: RagStatus }> = ({ status }) => { } return ( - + {status} );