fix(ui): left menu not scrollable (#52)

zio/stable
Joaquín Sánchez 2022-11-24 19:58:26 +01:00 committed by GitHub
parent 2ab3d5dbe7
commit 225273d00e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 11 deletions

View File

@ -5,17 +5,21 @@
<div sticky top-0 h-screen flex="~ col"> <div sticky top-0 h-screen flex="~ col">
<slot name="left"> <slot name="left">
<NavTitle p5 /> <NavTitle p5 />
<NavSide border="y base" /> <div border="t base" flex="~ col" overflow-y-auto>
<NavSide border="b base" />
<PublishButton v-if="currentUser" m5 /> <PublishButton v-if="currentUser" m5 />
<div flex-auto /> <div flex-auto />
<AccountInfo <AccountInfo
v-if="currentUser" v-if="currentUser"
tabindex="0"
m5 p2 rounded-full m5 p2 rounded-full
hover:bg-active cursor-pointer transition-100 hover:bg-active cursor-pointer transition-100
:account="currentUser?.account" :account="currentUser?.account"
:link="false" :link="false"
@keydown.enter="openUserSwitcher"
@click="openUserSwitcher" @click="openUserSwitcher"
/> />
</div>
</slot> </slot>
</div> </div>
</div> </div>