Reputation: 23
On windows phone my app is zoom-able and if I do a swipe top on the body I see white like on the browser. I already used meta no resizable and user zoom fixed.
Upvotes: 2
Views: 424
Reputation: 2956
For anyone else experiencing the same issue:
body{
touch-action: pan-y; /* disable all actions except vertical scrolling */
}
Upvotes: 1
Reputation: 313
Did you add initial-scale=1
, maximum-scale=1
, to the viewport tag?
Setting the CSS property: zoom: 1
can maybe fix your issue.
Let me know.
Example:
* {
zoom: 1;
}
Upvotes: 0