yariksav / vuetify-confirm

Extends vuetify.js confirm dialog
MIT License
142 stars 42 forks source link

[Feature Request] add class to allow use of css selectors #40

Open maelpetit opened 3 years ago

maelpetit commented 3 years ago

I want to change the buttons positions. I can use css and flex to achieve what i need but I can't select the confirm dialog appart from my other dialogs.

There could be a few solutions for this, but a simple class at the root of the confirm or an option to add one would be great

Thanks for the great package anyway :smile:

maelpetit commented 3 years ago

my current solution is to select with #app > [tabindex="0"] > .v-dialog > .v-card.v-sheet.theme--light.rounded-0 > .v-card__text.body-1.text-body-1.py-3 + .v-card__actions but it is not foolproof or to tediously exclude each of my dialog with a special class (not my prefered approaches)