From 4f035a3dce2249c4c696155158e1a8cc7f8e819b Mon Sep 17 00:00:00 2001 From: les Date: Wed, 5 Aug 2020 17:05:10 +0200 Subject: [PATCH] clean confirm modal --- components/Confirm.vue | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/components/Confirm.vue b/components/Confirm.vue index 4360a0ae..4a0e36ed 100644 --- a/components/Confirm.vue +++ b/components/Confirm.vue @@ -8,13 +8,11 @@ @keydown.esc='cancel') v-card v-card-title {{ title }} - v-card-text.pa-4(v-show='!!message') {{ message }} - v-card-actions.pt-0 + v-card-text(v-show='!!message') {{ message }} + v-card-actions v-spacer - v-btn(color='primary darken-1' text - @click='agree') {{$t('common.ok')}} - v-btn(color='secondary' - text @click='cancel') {{$t('common.cancel')}} + v-btn(color='error' @click='cancel') {{$t('common.cancel')}} + v-btn(color='primary' @click='agree') {{$t('common.ok')}}