From e68aab0d031fdfecf87ea7c33d52885771fed6f5 Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 27 Jan 2026 15:03:31 -0600 Subject: [PATCH] Correct padding direction - more top padding to push text down Text was sitting too high, so need 5px top / 4px bottom to push the text downward for visual centering. 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 5e22cf0..a899d3f 100755 --- a/frontend/components/PDFReport.tsx +++ b/frontend/components/PDFReport.tsx @@ -75,7 +75,7 @@ const RagStatusBadge: React.FC<{ status: RagStatus }> = ({ status }) => { } return ( - + {status} );