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:
commit
35c2d1ff91
|
@ -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;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
html {
|
||||
font-family: "Open Sans", sans-serif
|
||||
color: #333
|
||||
text-size-adjust: none
|
||||
}
|
||||
|
||||
body {
|
||||
|
|
Loading…
Reference in New Issue