summaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
Diffstat (limited to 'themes')
-rw-r--r--themes/danix-xyz-hacker/layouts/partials/toast-container.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/danix-xyz-hacker/layouts/partials/toast-container.html b/themes/danix-xyz-hacker/layouts/partials/toast-container.html
index 1c5fbf2..7bbd3c0 100644
--- a/themes/danix-xyz-hacker/layouts/partials/toast-container.html
+++ b/themes/danix-xyz-hacker/layouts/partials/toast-container.html
@@ -5,7 +5,7 @@
<template x-for="toast in toasts" :key="toast.id">
<div class="toast" :class="`toast-${toast.type}`" x-show="toasts.length > 0">
<span x-text="toast.message"></span>
- <div class="toast-close" @click="removeToast(toast.id)"></div>
+ <button class="toast-close" @click="removeToast(toast.id)" type="button" aria-label="Close notification"></button>
</div>
</template>
</div>