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

@@ -1,10 +1,11 @@
<template>
<q-page>
<h4 class="text-primary text-bold text-center">{{ $t('groups') }}</h4>
<SiteTitle :title="$t('groups')" />
<GroupTable />
</q-page>
</template>
<script setup lang="ts">
import SiteTitle from 'src/vueLib/general/SiteTitle.vue';
import GroupTable from 'src/vueLib/tables/group/GroupTable.vue';
</script>