diff options
author | Vitaly Takmazov | 2015-11-24 02:53:46 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2015-11-24 02:53:46 +0300 |
commit | f39e169fd0b0e5cf169b64d575fa8a276ee60123 (patch) | |
tree | 6a569d35b454f41eda5e31adca2fa629e707bc27 | |
parent | 73efc0facea38f5b59b56ffe43fba428b2d2a9ae (diff) |
fix incorrect font size on iOS when press back from external link
-rw-r--r-- | src/main/webapp/style.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/webapp/style.css b/src/main/webapp/style.css index a1682458..ebc91570 100644 --- a/src/main/webapp/style.css +++ b/src/main/webapp/style.css @@ -218,6 +218,7 @@ blockquote { border-left: 1px dashed #CCC; margin: 10px 0 10px 10px; padding-lef /******************************************************************************/ @media screen and (max-width: 850px) { + body { text-size-adjust: 100%; -webkit-text-size-adjust: 100%;} body,body>header,#topwrapper,#content,#footer,#mtoolbar { width: auto; min-width: 310px; margin: 0 auto; } body>header { margin-bottom: 15px; } |