forked from Mirrors/elk
fix(avatar): add outline in reblogged and replied statues
This commit is contained in:
parent
6944a74653
commit
5d1b62e219
1 changed files with 3 additions and 1 deletions
|
@ -11,7 +11,9 @@ defineProps<{
|
|||
</script>
|
||||
|
||||
<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" />
|
||||
</div>
|
||||
</template>
|
||||
|
|
Loading…
Reference in a new issue