fix: prevent rounded background when avatar is square (#811)

This commit is contained in:
Daniel Roe 2023-01-06 22:13:28 +00:00 committed by GitHub
parent 0a79f4dc28
commit 6a78f9c9e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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