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>
<PublishButton v-if="currentUser" m5 /> <NavSide border="b base" />
<div flex-auto /> <PublishButton v-if="currentUser" m5 />
<AccountInfo <div flex-auto />
v-if="currentUser" <AccountInfo
m5 p2 rounded-full v-if="currentUser"
hover:bg-active cursor-pointer transition-100 tabindex="0"
:account="currentUser?.account" m5 p2 rounded-full
:link="false" hover:bg-active cursor-pointer transition-100
@click="openUserSwitcher" :account="currentUser?.account"
/> :link="false"
@keydown.enter="openUserSwitcher"
@click="openUserSwitcher"
/>
</div>
</slot> </slot>
</div> </div>
</div> </div>