add styling option for wide calendar view

This commit is contained in:
Julian Krauser 2025-04-14 09:17:32 +02:00
parent 1296331796
commit 6d45325543
2 changed files with 19 additions and 5 deletions

View file

@ -12,7 +12,12 @@
</template>
<template #diffMain>
<div class="flex flex-col w-full h-full gap-2 justify-between px-7 overflow-hidden">
<CustomCalendar :items="formattedItems" :allow-interaction="false" @event-select="eventClick" />
<CustomCalendar
:items="formattedItems"
:allow-interaction="false"
:small-styling="true"
@event-select="eventClick"
/>
</div>
</template>
</MainTemplate>