fix(avatar): add outline in reblogged and replied statues

This commit is contained in:
Piotr Tomczewski 2023-01-07 15:16:30 +01:00
parent 6944a74653
commit 5d1b62e219

View file

@ -11,7 +11,9 @@ defineProps<{
</script> </script>
<template> <template>
<div :key="account.avatar" v-bind="$attrs" :rounded-full="!square" :bg-base="!square" w-54px h-54px flex items-center justify-center> <div
:key="account.avatar" v-bind="$attrs" class="w-54px h-54px flex items-center justify-center" :class="{ 'rounded-full': !square, 'bg-base': !square }"
>
<AccountAvatar :account="account" w-48px h-48px :square="square" /> <AccountAvatar :account="account" w-48px h-48px :square="square" />
</div> </div>
</template> </template>