fix(search): replace button with div

This commit is contained in:
三咲智子 2023-01-07 22:55:10 +08:00
parent cf561870f0
commit 1957a5c681
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E

View file

@ -7,7 +7,7 @@ defineProps<{
</script>
<template>
<button flex gap-2 items-center>
<div flex gap-2 items-center>
<AccountAvatar w-10 h-10 :account="account" shrink-0 />
<div flex="~ col gap1" shrink h-full overflow-hidden leading-none>
<div flex="~" gap-2>
@ -16,5 +16,5 @@ defineProps<{
</div>
<AccountHandle text-sm :account="account" text-secondary-light />
</div>
</button>
</div>
</template>