elk/components/account/AccountHoverCard.vue

21 lines
647 B
Vue
Raw Normal View History

<script setup lang="ts">
import type { Account } from 'masto'
defineProps<{
account: Account
}>()
</script>
<template>
2022-11-28 20:42:17 +00:00
<div flex="~ col gap2" rounded min-w-90 max-w-120 z-100 overflow-hidden p-4>
2022-11-28 09:51:15 +00:00
<div flex="~ gap2" items-center>
<NuxtLink :to="getAccountPath(account)" flex-auto rounded-full hover:bg-active transition-100 pr5 mr-a>
<AccountInfo :account="account" />
</NuxtLink>
2022-11-28 09:51:15 +00:00
<AccountFollowButton text-sm :account="account" />
</div>
<ContentRich text-4 text-secondary :content="account.note" :emojis="account.emojis" />
2022-11-28 09:51:15 +00:00
<AccountPostsFollowers text-sm :account="account" />
</div>
</template>