From bfee60399c98956619ad4717c85251c67871ef3e Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 27 Jan 2026 15:07:25 -0600 Subject: [PATCH] Try fixed height with matching line-height for vertical centering Use height: 24px with line-height: 24px and no vertical padding. This forces text to center vertically within the fixed height container. Added box-sizing: border-box and vertical-align: middle for reliability. 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 61d719c..9b881d9 100755 --- a/frontend/components/PDFReport.tsx +++ b/frontend/components/PDFReport.tsx @@ -75,7 +75,7 @@ const RagStatusBadge: React.FC<{ status: RagStatus }> = ({ status }) => { } return ( - + {status} );