[Vuejs]-I found a white space at the bottom while making the website mobile responsive on some of the phones and tablets

0👍

Yes, I found the solution by myself, the answer is that I always set the first q-layout height equal to the window height so these bugs can be fixed. In my case I just simply

<q-layout style="height: 800px">
to
<q-layout style="height: 1000px">

Leave a comment