Fix clic event for alerts

This commit is contained in:
SebClem 2024-07-22 17:22:36 +02:00
parent 4e55a4790e
commit e117758c7b
Signed by: sebclem
GPG Key ID: 5A4308F6A359EA50

View File

@ -53,8 +53,10 @@ const alertVisible = computed(() => alertList.value.length > 0);
right: 20px; right: 20px;
z-index: 99999; z-index: 99999;
height: 100vh; height: 100vh;
pointer-events: none;
#alertContainer { #alertContainer {
position: sticky; position: sticky;
pointer-events: all;
top: 80px; top: 80px;
right: 20px; right: 20px;
} }