fix(frontend): use system-ui for system font (#11177)

* fix(frontend): correct system font stack

This was originally set to Hiragino Maru Gothic Pro, which is the same as the current default font.

* just use system-ui

per code review https://github.com/misskey-dev/misskey/pull/11177#discussion_r1257260039

---------

Co-authored-by: Kagami Sascha Rosylight <saschanaz@outlook.com>
This commit is contained in:
eni
2023-07-09 21:24:05 +09:00
committed by GitHub
parent 9dd53527ca
commit 53b1684c39
2 changed files with 2 additions and 1 deletions

View File

@@ -72,7 +72,7 @@ html {
}
&.useSystemFont {
font-family: 'Hiragino Maru Gothic Pro', sans-serif;
font-family: system-ui;
}
}