mirror of
https://github.com/rust-lang/mdBook
synced 2025-03-05 07:37:19 +00:00
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
2 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,9 @@
|
||||||
html {
|
html {
|
||||||
font-family: "Open Sans", sans-serif;
|
font-family: "Open Sans", sans-serif;
|
||||||
color: #333;
|
color: #333;
|
||||||
|
-webkit-text-size-adjust: none;
|
||||||
|
-ms-text-size-adjust: none;
|
||||||
|
text-size-adjust: none;
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
html {
|
html {
|
||||||
font-family: "Open Sans", sans-serif
|
font-family: "Open Sans", sans-serif
|
||||||
color: #333
|
color: #333
|
||||||
|
text-size-adjust: none
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|
Loading…
Add table
Reference in a new issue