mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 23:33:09 +02:00
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:
parent
9dd53527ca
commit
53b1684c39
2 changed files with 2 additions and 1 deletions
|
@ -34,6 +34,7 @@
|
|||
- Fix: ページ遷移でスクロール位置が保持されない問題を修正
|
||||
- Fix: フォルダーのページネーションが機能しない #11180
|
||||
- Fix: 長い文章を投稿する際、プレビューが画面からはみ出る問題を修正
|
||||
- Fix: システムフォント設定が正しく反映されない問題を修正
|
||||
|
||||
### Server
|
||||
- JSON.parse の回数を削減することで、ストリーミングのパフォーマンスを向上しました
|
||||
|
|
|
@ -72,7 +72,7 @@ html {
|
|||
}
|
||||
|
||||
&.useSystemFont {
|
||||
font-family: 'Hiragino Maru Gothic Pro', sans-serif;
|
||||
font-family: system-ui;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue