Having trouble fixing the issue with the Vuetify tooltip. After scrolling on the page, the tooltip moves up despite using fixed="true"
.
Here is the code snippet causing the problem:
<v-footer app inset fixed>
<v-row align="center">
<v-col class="shrink px-1">
<v-tooltip top>
<template v-slot:activator="{ on }">
<v-btn
icon
outlined
v-on="on"
@click="dryRun"
>
<v-icon>flash_on</v-icon>
</v-btn>
</template>
<span>Tooltip</span>
</v-tooltip>
</v-col>
</v-row>
</v-footer>
If you want to see the issue in action, visit this link: https://codepen.io/vitalypdev/pen/QWLmBLE