Here's the script I am working with:
<v-col
cols="12"
md="12"
style="position: -webkit-sticky; position: sticky; bottom: 0;background: white;"
>
<v-btn class="success" block>Select</v-btn>
</v-col>
If you want to see a demo and the full code, check out this link: https://codepen.io/happyforever/pen/vYYoYNw?editors=1010
To test it on mobile and scroll down, you will notice that when you reach the bottom, the select button moves up.
My goal is to make sure the select button stays in place and does not move when scrolling down. Any ideas on how to solve this problem?