From 8329afe89734d2b0d1f90a5d41e88f9d1becb9e1 Mon Sep 17 00:00:00 2001 From: Dennis Postma Date: Sun, 2 Jun 2024 02:33:29 +0200 Subject: [PATCH] Improved receiving notifications --- src/components/utilities/Modal.vue | 2 +- src/components/utilities/Notifications.vue | 22 +++++++++++++++++----- src/stores/notifications.ts | 4 ++-- src/types.ts | 3 +-- 4 files changed, 21 insertions(+), 10 deletions(-) diff --git a/src/components/utilities/Modal.vue b/src/components/utilities/Modal.vue index 284a237..6382391 100644 --- a/src/components/utilities/Modal.vue +++ b/src/components/utilities/Modal.vue @@ -93,7 +93,6 @@ onUnmounted(() => { background-color: rgba($white, 0.8); z-index: 999; - // make draggable .modal-header { cursor: move; background-color: rgba($purple, 0.6); @@ -149,6 +148,7 @@ onUnmounted(() => { margin-right: 20px; } } + button { padding: 10px 16px; min-width: 6.25rem; diff --git a/src/components/utilities/Notifications.vue b/src/components/utilities/Notifications.vue index 6e7eed0..f59b1c6 100644 --- a/src/components/utilities/Notifications.vue +++ b/src/components/utilities/Notifications.vue @@ -1,7 +1,10 @@