UX: update system font stack to system-ui (#31125)

support for the `system-ui` value is widely available now, so we can
drop the device specific values:
https://highperformancewebfonts.com/read/ditch-BlinkMacSystemFont-and-apple-system

https://caniuse.com/?search=system-ui
This commit is contained in:
Kris 2025-02-03 11:28:17 -05:00 committed by GitHub
parent c8718a64dd
commit 0989c4b0a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,5 @@
body.invite-page {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, Arial, sans-serif;
font-family: system-ui, Arial, sans-serif;
#main-outlet-wrapper {
padding: 0;

View File

@ -22,8 +22,7 @@ body.wizard {
background-repeat: no-repeat;
background-position: bottom;
color: var(--primary-very-high);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, Arial, sans-serif;
font-family: system-ui, Arial, sans-serif;
.wrap {
max-width: 100%;