fix: 💄 Remove extra bg value on Avatar inner images

This commit is contained in:
Jesse Wierzbinski 2024-06-20 18:53:34 -10:00
parent 21fcdd8f64
commit bba222a2fc
No known key found for this signature in database
3 changed files with 21 additions and 16 deletions

View file

@ -1,7 +1,7 @@
<template>
<div v-bind="$attrs" class="bg-dark-700 overflow-hidden flex items-center justify-center">
<Skeleton :enabled="!imageLoaded" class="!h-full !w-full !rounded-none">
<img class="cursor-pointer bg-dark-700 ring-1 w-full h-full object-cover" :src="src" :alt="alt" />
<img class="cursor-pointer ring-1 w-full h-full object-cover" :src="src" :alt="alt" />
</Skeleton>
</div>
</template>