Fix orientation bugs

Maintain fontsize and and adapt width when switching to landscape mode.
This commit is contained in:
Michael Kühnel 2014-08-31 15:27:51 +02:00
parent 18eb8e6fb7
commit 9e9f4f1c53
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width"> <meta name="viewport" content="width=device-width initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title> <title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>

View File

@ -20,6 +20,7 @@ body {
font-weight: 300; font-weight: 300;
color: $text-color; color: $text-color;
background-color: $background-color; background-color: $background-color;
-webkit-text-size-adjust: 100%;
} }