Fix the elastic white area on iOS and change bar to translucent.

master
Tom Hacohen 7 years ago
parent 2d76164666
commit a464f019aa

@ -8,6 +8,7 @@
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="EteSync">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!--
manifest.json provides metadata used when your web app is added to the
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/

@ -2,4 +2,14 @@ body {
margin: 0;
padding: 0;
font-family: sans-serif;
background-color: #ffc107;
}
body:before {
content: '';
position: absolute;
height: 100%;
width: 100%;
z-index: -1;
background-color: white;
}

Loading…
Cancel
Save