From: Adam Dullage Date: Sun, 5 May 2024 17:51:01 +0000 (+0100) Subject: Implement various theming updates X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=ed179347fe7c5db4f03a538f71238fa7aba47fcf;p=flatnotes.git Implement various theming updates --- diff --git a/client/components/ConfirmModal.vue b/client/components/ConfirmModal.vue index 8617fb0..502213a 100644 --- a/client/components/ConfirmModal.vue +++ b/client/components/ConfirmModal.vue @@ -1,7 +1,7 @@ @@ -25,6 +25,7 @@ import Modal from "./Modal.vue"; const props = defineProps({ title: { type: String, default: "Confirmation" }, message: String, + confirmButtonText: { type: String, default: "Confirm" }, isDanger: Boolean, }); const emit = defineEmits(["confirm", "cancel"]); diff --git a/client/components/CustomButton.vue b/client/components/CustomButton.vue index 64f92d9..f958a41 100644 --- a/client/components/CustomButton.vue +++ b/client/components/CustomButton.vue @@ -1,9 +1,10 @@