From 6314e60464939f55b132e1f9363464e69cf9e16c Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Tue, 10 Mar 2026 11:50:53 +0100 Subject: [PATCH] fix: Monospace-Schrift im Overlay fuer korrekte Leerzeichen-Ausrichtung column_text Zellen enthalten proportionale Leerzeichen zur Ausrichtung. Mit Monospace-Font stehen Waehrungswerte korrekt untereinander. Co-Authored-By: Claude Opus 4.6 --- admin-lehrer/components/ocr-pipeline/StepLlmReview.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin-lehrer/components/ocr-pipeline/StepLlmReview.tsx b/admin-lehrer/components/ocr-pipeline/StepLlmReview.tsx index 62bac4f..61b75e0 100644 --- a/admin-lehrer/components/ocr-pipeline/StepLlmReview.tsx +++ b/admin-lehrer/components/ocr-pipeline/StepLlmReview.tsx @@ -715,7 +715,7 @@ export function StepLlmReview({ sessionId, onNext }: StepLlmReviewProps) { fontSize: `${fontSize}px`, fontWeight: globalBold ? 'bold' : (cell.is_bold ? 'bold' : 'normal'), paddingLeft: `${leftPaddingPct}%`, - fontFamily: "'Liberation Sans', Arial, sans-serif", + fontFamily: "'Courier New', 'Liberation Mono', monospace", display: 'flex', alignItems: 'center', whiteSpace: 'pre',