Found during: UX gap analysis
The DiffViewer uses Tailwind's font-mono utility which falls back to browser default. A --font-mono token should be declared in the @theme {} block alongside --font-serif and --font-sans for consistent monospace rendering across the diff viewer and code elements.
Fix: Add --font-mono: 'JetBrains Mono', ui-monospace, monospace; to the @theme {} block in the global CSS.
Found during: UX gap analysis
The DiffViewer uses Tailwind's
font-monoutility which falls back to browser default. A--font-monotoken should be declared in the@theme {}block alongside--font-serifand--font-sansfor consistent monospace rendering across the diff viewer and code elements.Fix: Add
--font-mono: 'JetBrains Mono', ui-monospace, monospace;to the@theme {}block in the global CSS.