fix announcement scrolling

This commit is contained in:
Michael Genson
2026-04-10 15:54:19 +00:00
parent 544ee0c65c
commit 768d2655e0

View File

@@ -8,7 +8,7 @@
width="100%" width="100%"
max-width="1200" max-width="1200"
> >
<div class="d-flex" :style="{ height: useMobile ? '100%' : '60vh' }"> <div class="d-flex" :style="{ height: useMobile ? '100%' : '60vh', minHeight: '60vh' }">
<!-- Nav list --> <!-- Nav list -->
<v-list <v-list
v-show="!useMobile || navOpen" v-show="!useMobile || navOpen"
@@ -16,7 +16,7 @@
density="compact" density="compact"
color="primary" color="primary"
class="overflow-y-auto border-e flex-shrink-0" class="overflow-y-auto border-e flex-shrink-0"
style="width: 200px" style="width: 200px; max-height: 60vh"
> >
<v-list-item <v-list-item
v-for="announcement in allAnnouncements.toReversed()" v-for="announcement in allAnnouncements.toReversed()"