diff options
author | Eric Bailey <git@esb.lol> | 2024-03-09 17:42:42 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-09 15:42:42 -0800 |
commit | 1aaed1cc0d59ecafa1bb3c7f57f0a323940e6317 (patch) | |
tree | ff5eab02d7e8dcdaa80bfce99f382da90671f6c5 | |
parent | f6685419d8ec29823cdd2bd965a97099830b8240 (diff) | |
download | voidsky-1aaed1cc0d59ecafa1bb3c7f57f0a323940e6317.tar.zst |
Fix font styles on web (#3162)
-rw-r--r-- | bskyweb/templates/base.html | 3 | ||||
-rw-r--r-- | web/index.html | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html index 55447552e..c7c5ec0f0 100644 --- a/bskyweb/templates/base.html +++ b/bskyweb/templates/base.html @@ -43,6 +43,9 @@ height: calc(100% + env(safe-area-inset-top)); scrollbar-gutter: stable both-edges; } + html, body { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; + } /* Buttons and inputs have a font set by UA, so we'll have to reset that */ button, input, textarea { diff --git a/web/index.html b/web/index.html index b6e01ba4c..de0abfc91 100644 --- a/web/index.html +++ b/web/index.html @@ -47,6 +47,9 @@ height: calc(100% + env(safe-area-inset-top)); scrollbar-gutter: stable both-edges; } + html, body { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; + } /* Buttons and inputs have a font set by UA, so we'll have to reset that */ button, input, textarea { |