fix: bring back borders to avatars

This commit is contained in:
patak 2023-01-07 23:00:26 +01:00
parent 1f92cdc1c9
commit c1aac9d2dc

View file

@ -11,7 +11,7 @@ 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" :style="{ 'clip-path': square ? `url(#avatar-mask)` : 'none' }" :class="{ 'rounded-full': !square }" bg-base w-54px h-54px flex items-center justify-center>
<AccountAvatar :account="account" w-48px h-48px :square="square" />
</div>
</template>