From 96fbeb235e1054f1fd3a819835158820b5f59f06 Mon Sep 17 00:00:00 2001 From: patak Date: Mon, 12 Dec 2022 21:25:42 +0100 Subject: [PATCH] style: use bg-base for transparent avatars --- components/account/AccountAvatar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/account/AccountAvatar.vue b/components/account/AccountAvatar.vue index 50ba5a28..920b15e9 100644 --- a/components/account/AccountAvatar.vue +++ b/components/account/AccountAvatar.vue @@ -16,7 +16,7 @@ const error = $ref(false) :alt="$t('account.avatar_description', [account.username])" loading="lazy" rounded-full - :class="loaded ? 'bg-gray' : 'bg-gray:10'" + :class="loaded ? 'bg-base' : 'bg-gray:10'" v-bind="$attrs" @load="loaded = true" @error="error = true"