mirror of
https://github.com/chubin/wttr.in
synced 2024-11-14 16:17:19 +00:00
Should fix monospace char issues in Android
Some bar drawing gliphs are missing in Android. Adobe's Source Code Pro has them all, so it's one option to fix it on all platforms. If you wish you can also host the font locally. https://stackoverflow.com/questions/51892280/how-do-i-fix-monospace-spaces-not-being-correct-width-in-android-chrome-firefox/52712376
This commit is contained in:
parent
29dea0382d
commit
df0b72e178
2 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,7 @@ font-size: 70%;
|
|||
|
||||
/*font-family: Lucida Console,Lucida Sans Typewriter,monaco,Bitstream Vera Sans Mono,monospace; */
|
||||
/*Droid Sans Mono*/
|
||||
font-family: "DejaVu Sans Mono", Menlo, "Lucida Sans Typewriter", "Lucida Console", monaco, "Bitstream Vera Sans Mono", monospace;
|
||||
font-family: "Source Code Pro", "DejaVu Sans Mono", Menlo, "Lucida Sans Typewriter", "Lucida Console", monaco, "Bitstream Vera Sans Mono", monospace;
|
||||
/*font-family: bitstream_vera_sans_monoroman;*/
|
||||
font-size: 75%;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" type="text/css" href="https://adobe-fonts.github.io/source-code-pro/source-code-pro.css">
|
||||
<link rel="stylesheet" type="text/css" href="/files/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
|
Loading…
Reference in a new issue