chore(app): cleanup tailwind vs pure css

This commit is contained in:
adamelmore 2026-01-27 08:28:55 -06:00
commit 099ab929db
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
23 changed files with 158 additions and 279 deletions

View file

@ -37,7 +37,7 @@ export function Avatar(props: AvatarProps) {
}}
>
<Show when={src} fallback={split.fallback?.[0]}>
{(src) => <img src={src()} draggable={false} class="size-full object-cover rounded-[inherit]" />}
{(src) => <img src={src()} draggable={false} data-slot="avatar-image" />}
</Show>
</div>
)