We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tag display layout is slightly distorted on Android Chrome.
Latest
None
No response
Android Chrome(Remote debuggiing)
The system font set is not specified properly.
This can be resolved by adding the following system font specification:
https://github.com/xicri/genshin-dictionary/blob/main/assets/styles/global.scss#L3-L4
html { font-family: "Noto Sans CJK JP", "Meiryo", "Hiragino Sans", sans-serif;
↓
html { font-family: system-ui, -apple-system, "Noto Sans CJK JP", "Meiryo", "Hiragino Sans", sans-serif;
The text was updated successfully, but these errors were encountered:
I checked it when I had time, and it seems that android chrome and sans-serif don't work well together.
Also, if you put system-ui at the top, Meiryo UI seems to be used as the Windows font, which isn't very good.
As a result, it seems best to put "system-ui" and "-apple-system" before "sans-serif". https://github.com/xicri/genshin-dictionary/blob/main/assets/styles/global.scss#L3-L4
html { font-family: "Noto Sans CJK JP", "Meiryo", "Hiragino Sans", system-ui, -apple-system, sans-serif;
Sorry, something went wrong.
xicri
No branches or pull requests
The problem
Tag display layout is slightly distorted on Android Chrome.
Release version
Latest
Operating system
Chome
Edge(Chomium)
Firefox
Safari
Chome
Safari
Safari
Chome
Samsung Brower(Chromium)
Steps to reproduce the behavior
None
Log files
No response
Screenshots
Android Chrome(Remote debuggiing)
Additional context
The system font set is not specified properly.
This can be resolved by adding the following system font specification:
https://github.com/xicri/genshin-dictionary/blob/main/assets/styles/global.scss#L3-L4
↓
The text was updated successfully, but these errors were encountered: