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

This commit is contained in:
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

View file

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