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