Skip to content

Commit

Permalink
fix: bring back borders to avatars
Browse files Browse the repository at this point in the history
  • Loading branch information
patak-dev committed Jan 7, 2023
1 parent 1f92cdc commit c1aac9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/account/AccountBigAvatar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>

0 comments on commit c1aac9d

Please sign in to comment.