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

pull/54/head^2
Joaquín Sánchez 2022-11-24 19:58:26 +01:00 zatwierdzone przez GitHub
rodzic 2ab3d5dbe7
commit 225273d00e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 15 dodań i 11 usunięć

Wyświetl plik

@ -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>