From 3e4379284e65cade0376547dd6c0eb838d32b59d Mon Sep 17 00:00:00 2001 From: Eliot Robson Date: Thu, 15 Jan 2026 18:50:58 -0500 Subject: [PATCH] Fix #379: Change code font to use proper monospace fonts Removed "Poppins" from the $monospace variable as it is not a monospace font. This was causing alignment issues in code blocks, particularly for dataframe representations where column names need to align with their values. The font stack now properly uses Monaco, Consolas, Courier New, and generic monospace fallback. --- _sass/minimal-mistakes/_variables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sass/minimal-mistakes/_variables.scss b/_sass/minimal-mistakes/_variables.scss index 137689c9..12fdd04c 100644 --- a/_sass/minimal-mistakes/_variables.scss +++ b/_sass/minimal-mistakes/_variables.scss @@ -33,7 +33,7 @@ $sans-serif: "Lucida Grande", Arial, sans-serif !default; -$monospace: "Poppins", Monaco, Consolas, monospace !default; +$monospace: Monaco, Consolas, "Courier New", monospace !default; /* sans serif typefaces */ $sans-serif-narrow: $sans-serif !default;