1
0
forked from noxious/client

Remove modal- classes and re implemented styling

This commit is contained in:
2024-07-04 23:19:22 +02:00
parent d15e5f796f
commit 5dd8664c34
9 changed files with 38 additions and 72 deletions

View File

@ -2,7 +2,7 @@
<div class="notifications">
<Modal v-for="notification in notifications.getNotifications" :key="notification.id" :isModalOpen="true" @modal:close="closeNotification(notification.id)">
<template #modalHeader v-if="notification.title">
<h3 class="modal-title">{{ notification.title }}</h3>
<h3 class="m-0 font-medium shrink-0">{{ notification.title }}</h3>
</template>
<template #modalBody v-if="notification.message">
<p class="modal-notif">{{ notification.message }}</p>