Is there a way to have a floating action button positioned on the top right of a dialog, slightly overflowing so it's offset from the dialog itself? I'm struggling to override the 'overflow-y: hidden' property set by v-dialog.
<v-dialog max-width="450">
<div style="width: 200px; height: 200px;">
<v-btn fab absolute top right>
<v-icon>
mdi-close
</v-icon>
</v-btn>
</div>
</v-dialog>
I've attempted using styles with !important:
.show-overflow {
overflow: visible !important;
}
I also tried directly styling with 'style="overflow: visible"' in the element.
When I manually remove 'overflow: hidden' from v-dialog using Chrome DevTools, I achieve the desired result. However, I haven't found a permanent solution yet.
Does anyone know how to solve this issue?