Added Notifications

This commit is contained in:
2026-05-16 23:48:18 +10:00
parent 69d72e0912
commit 1d5b9f340f
61 changed files with 4204 additions and 182 deletions
@@ -1,9 +1,11 @@
<script setup lang="ts">
defineProps<{
centered?: boolean
}>()
</script>
<template>
<div class="panel-sub-header"><slot/></div>
<div class="panel-sub-header" :class="centered ? 'centered' : ''"><slot/></div>
</template>
<style scoped>
@@ -12,4 +14,8 @@
color: var(--muted);
margin-bottom: 0.5rem;
}
.centered{
text-align: center;
}
</style>