Merge pull request #740 from mattico/fix-ios-text-size

Prevent certain mobile browsers from enlarging fonts in landscape ori…
This commit is contained in:
Matt Ickstadt 2018-07-25 12:27:16 -05:00 committed by GitHub
commit 35c2d1ff91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,9 @@
html {
font-family: "Open Sans", sans-serif;
color: #333;
-webkit-text-size-adjust: none;
-ms-text-size-adjust: none;
text-size-adjust: none;
}
body {
margin: 0;

View File

@ -1,6 +1,7 @@
html {
font-family: "Open Sans", sans-serif
color: #333
text-size-adjust: none
}
body {