Ionic v2-rc3(Android). Page slip up when the input get focus

After ionic upgrade to rc3, When I put the focus in textbox, the page slips up, I discovered that the problem comes from sass: * { box-sizing: border-box; }, if I replace the border-box with content-box it solves the slideUP issue * { box-sizing: content-box; } but it disrupts other elements in app.
Exists another solution to avoid slideUP ?

1 Like