mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-07 01:19:57 +00:00
fix: prevent rounded background when avatar is square (#811)
This commit is contained in:
parent
0a79f4dc28
commit
6a78f9c9e3
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue