diff --git a/CHANGELOG.md b/CHANGELOG.md index 900a7ca14..40d241f7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Unreleased +### Bug Fixes + +- Updated page font to work around issues with Mac rendering, #2518 + +### Thanks! + +- @docmattman + ## v0.25.11 (2024-03-06) ### Bug Fixes diff --git a/static/style.css b/static/style.css index 98a437794..072daed85 100644 --- a/static/style.css +++ b/static/style.css @@ -405,7 +405,8 @@ dd { } body { background: var(--color-background); - font-family: "Segoe UI", sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", + Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; font-size: 16px; color: var(--color-text); }