From a988d1e1259afb50a4a194c24673c2302ae5e9e5 Mon Sep 17 00:00:00 2001 From: benji Date: Fri, 13 Mar 2026 21:23:21 +0000 Subject: [PATCH] MEIER-289: Fix inline code font-size to match body text --- app/src/App/input.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/src/App/input.css b/app/src/App/input.css index e55ba14..0b54cc5 100644 --- a/app/src/App/input.css +++ b/app/src/App/input.css @@ -3,3 +3,9 @@ @plugin "@tailwindcss/forms"; @plugin "@tailwindcss/typography"; @custom-variant dark (&:where(.dark, .dark *)); + +/* Inline code: monospace fonts render larger at the same font-size, + so scale down to visually match surrounding body text. */ +.prose :where(code):not(:where(pre *)) { + font-size: 0.875em; +}