Merge pull request #1465 from Wevah/ios-feed-sizing-fix

Make initial scale 100% and don't let WebKit increase text size
This commit is contained in:
Maurice Parker 2019-12-26 11:24:49 -07:00 committed by GitHub
commit be2b7e6eef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {