Global margin for modals, cleaned up gm-panel styling

This commit is contained in:
2024-06-20 21:39:30 +02:00
parent 79f804d5f5
commit 98e9ae1a80
9 changed files with 97 additions and 77 deletions

View File

@ -5,7 +5,7 @@
<h3 class="modal-title">{{ notification.title }}</h3>
</template>
<template #modalBody v-if="notification.message">
<p>{{ notification.message }}</p>
<p class="modal-notif">{{ notification.message }}</p>
</template>
</Modal>
</div>
@ -54,3 +54,9 @@ onBeforeUnmount(() => {
}
})
</script>
<style lang="scss">
.modal-notif {
margin: 15px;
}
</style>