Make initial scale 100% and don't let WebKit increase text size

Issue #1459.
This commit is contained in:
Nate Weaver 2019-12-24 20:12:10 -06:00
parent 84d1ccadfd
commit 758fb1a1c0
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<html>
<head>
<meta name="viewport" content="width=device-width">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
:root {
color-scheme: light dark;

View File

@ -8,6 +8,7 @@ body {
word-wrap: break-word;
word-break: break-word;
-webkit-hyphens: auto;
-webkit-text-size-adjust: none;
}
a {