feat: use square avatar when on own profile (#961)

pull/964/head
wheat 2023-01-11 03:39:49 -05:00 zatwierdzone przez GitHub
rodzic e690422266
commit 2af1fec425
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -70,8 +70,8 @@ const isSelf = $computed(() => currentUser.value?.account.id === account.id)
<div p4 mt--18 flex flex-col gap-4>
<div relative>
<div flex="~ col gap-2 1">
<button w-30 h-30 rounded-full border-4 border-bg-base z-2 @click="previewAvatar">
<AccountAvatar :account="account" hover:opacity-90 transition-opacity />
<button :class="{ 'rounded-full': !isSelf, 'squircle': isSelf }" w-30 h-30 p1 bg-base border-bg-base z-2 @click="previewAvatar">
<AccountAvatar :square="isSelf" :account="account" hover:opacity-90 transition-opacity />
</button>
<div flex="~ col gap1">
<div flex justify-between>

Wyświetl plik

@ -232,3 +232,7 @@ footer {
--at-apply: 'hover:underline';
}
}
.squircle {
clip-path: url(#avatar-mask);
}