mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
fix(avatar): update default bg color (#214)
This commit is contained in:
parent
db47e31597
commit
08fe00df6d
2 changed files with 6 additions and 2 deletions
|
@ -4,6 +4,8 @@ import type { Account } from 'masto'
|
|||
defineProps<{
|
||||
account: Account
|
||||
}>()
|
||||
|
||||
const loaded = $ref(false)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -12,7 +14,9 @@ defineProps<{
|
|||
:src="account.avatar"
|
||||
:alt="account.username"
|
||||
loading="lazy"
|
||||
rounded-full bg-gray:10
|
||||
rounded-full
|
||||
:class="loaded ? 'bg-gray' : 'bg-gray:10'"
|
||||
v-bind="$attrs"
|
||||
@load="loaded = true"
|
||||
>
|
||||
</template>
|
||||
|
|
|
@ -80,7 +80,7 @@ watchEffect(() => {
|
|||
<div p4 mt--17 flex flex-col gap-4>
|
||||
<div relative>
|
||||
<div flex="~ col gap-2 1">
|
||||
<button w-30 h-30 rounded-full bg-gray border-4 border-bg-base z-2 @click="previewAvatar">
|
||||
<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>
|
||||
<div flex flex-col>
|
||||
|
|
Loading…
Reference in a new issue