add new page header and decrease marging

This commit is contained in:
Adrian Zürcher
2025-11-16 08:40:42 +01:00
parent bba4486136
commit dce451bfc2
8 changed files with 29 additions and 13 deletions

View File

@@ -0,0 +1,12 @@
<template>
<h4 class="text-primary text-bold text-center" :style="{ margin: props.marging + 'px' }">
{{ props.title }}
</h4>
</template>
<script setup lang="ts">
const props = defineProps({
title: { type: String },
marging: { type: Number, default: 28 },
});
</script>