Skip to content

Commit

Permalink
Change default font to be compatible with Mac (#2520)
Browse files Browse the repository at this point in the history
* Set default font to Open Sans web font

Segoe UI causes some text rendering issues on Mac.  Use Open Sans as a close replacement.

* Update font-family

* Make prettier happy

---------

Co-authored-by: Gerrit Birkeland <gerrit@gerritbirkeland.com>
  • Loading branch information
docmattman and Gerrit0 committed Mar 10, 2024
1 parent 9a1a5af commit c3ae6ec
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions 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
Expand Down
3 changes: 2 additions & 1 deletion static/style.css
Expand Up @@ -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);
}
Expand Down

0 comments on commit c3ae6ec

Please sign in to comment.