How can I make this not hidden when it overflows the component? Thank you for your help.
<v-card>
<v-btn @click="dialog = false" fab small absolute top right class="error">
<v-icon>
mdi-close
</v-icon>
</v-btn>
</v-card>
How can I make this not hidden when it overflows the component? Thank you for your help.
<v-card>
<v-btn @click="dialog = false" fab small absolute top right class="error">
<v-icon>
mdi-close
</v-icon>
</v-btn>
</v-card>
You can override the style using vue's CSS deep selector (>>>). Judging by your code, the overflow style must be coming from the v-dialog class (@click="dialog = false", I take for granted you're trying to close a dialog on the click of that button), so just add this to the vue component :
<style scoped>
>>> .v-dialog {
overflow-y: visible;
}
</style>
The '>>>' makes it so the overflow-y property of the v-dialog class is going to be overriden.
Check your CSS - your card is having
overflow: hidden
. Remove this CSS rule and it will work as expected.