kieuminhcanh / vuetify-notifier

21 stars 2 forks source link

Text align in confirm dialog #6

Closed sivo1981 closed 2 months ago

sivo1981 commented 2 months ago

Currently it's not possible to align text left or right using confirm method because card text element has fixed class "text-center". Can you add this option?

https://github.com/kieuminhcanh/vuetify-notifier/blob/8a11caeb59c904ee86bdbd3a10de6932d0eff488/src/plugins/vuetify-notifier/components/NotifierDialog.vue#L38

kieuminhcanh commented 2 months ago

It's work now.

    $notifier.alert(
      {
        title: 'Confirm',
        text: 'Are you sure?',
      },
      status,
      {
        textAlign: 'left',
      }
    )