Fix fullscreen layout on iOS

This commit is contained in:
Robin Linus 2016-01-01 18:06:27 +01:00
parent 2fd3da2920
commit 4e460089eb
5 changed files with 12 additions and 12 deletions

View file

@ -29,6 +29,6 @@ paper-progress {
top: 0;
}
neon-animated-pages{
height: 100%;
height: 100vh;
}
</style>

View file

@ -2,6 +2,8 @@ html,
body {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}
body {
@ -9,4 +11,5 @@ body {
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #333;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}