Made Index Scrollable

This commit is contained in:
2025-03-23 15:21:17 +01:00
parent 325c37e26e
commit f21cd63367

View File

@@ -1,6 +1,4 @@
<template> <template>
<UDashboardPage>
<UDashboardPanel grow>
<UDashboardNavbar title="Home"> <UDashboardNavbar title="Home">
<template #right> <template #right>
<UTooltip text="Notifications" :shortcuts="['N']"> <UTooltip text="Notifications" :shortcuts="['N']">
@@ -13,7 +11,7 @@
</template> </template>
</UDashboardNavbar> </UDashboardNavbar>
<UDashboardPanelContent class="flex flex-col"> <UDashboardPanelContent>
<div class="mb-5"> <div class="mb-5">
<UDashboardCard <UDashboardCard
title="Einnahmen und Ausgaben(netto)" title="Einnahmen und Ausgaben(netto)"
@@ -49,16 +47,7 @@
<display-open-tasks/> <display-open-tasks/>
</UDashboardCard> </UDashboardCard>
</UPageGrid> </UPageGrid>
<div class="flex flex-row">
</div>
</UDashboardPanelContent> </UDashboardPanelContent>
</UDashboardPanel>
</UDashboardPage>
</template> </template>
<script setup> <script setup>
@@ -99,9 +88,5 @@ setup()
</script> </script>
<style scoped> <style scoped>
.card {
border: 1px solid darkgray;
border-radius: 20px;
}
</style> </style>