Skip to content

Commit

Permalink
Fix font styles on web (#3162)
Browse files Browse the repository at this point in the history
  • Loading branch information
estrattonbailey authored Mar 9, 2024
1 parent f668541 commit 1aaed1c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bskyweb/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 3 additions & 0 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

1 comment on commit 1aaed1c

@haileyok
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ohh did this fix the issues with nested text in , but date picker, etc?

Please sign in to comment.