diff options
| author | eni <129673786+enitama@users.noreply.github.com> | 2023-07-09 21:24:05 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-09 14:24:05 +0200 |
| commit | 53b1684c39df28017e1f798ec5826569efcf143d (patch) | |
| tree | f166c1e8af95e7ef04bcc63c2ad7b4384c772e1c | |
| parent | feat: プロフィールURLをコピー ボタンを追加 close #11190 (#11205) (diff) | |
| download | misskey-53b1684c39df28017e1f798ec5826569efcf143d.tar.gz misskey-53b1684c39df28017e1f798ec5826569efcf143d.tar.bz2 misskey-53b1684c39df28017e1f798ec5826569efcf143d.zip | |
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>
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | packages/frontend/src/style.scss | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e0d2fc7c3e..8e57baf2d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ - Fix: ページ遷移でスクロール位置が保持されない問題を修正 - Fix: フォルダーのページネーションが機能しない #11180 - Fix: 長い文章を投稿する際、プレビューが画面からはみ出る問題を修正 +- Fix: システムフォント設定が正しく反映されない問題を修正 ### Server - JSON.parse の回数を削減することで、ストリーミングのパフォーマンスを向上しました diff --git a/packages/frontend/src/style.scss b/packages/frontend/src/style.scss index b4b80a4bbe..bd74db7c85 100644 --- a/packages/frontend/src/style.scss +++ b/packages/frontend/src/style.scss @@ -72,7 +72,7 @@ html { } &.useSystemFont { - font-family: 'Hiragino Maru Gothic Pro', sans-serif; + font-family: system-ui; } } |