chore(app): cleanup tailwind vs pure css

This commit is contained in:
adamelmore
2026-01-27 08:28:55 -06:00
parent eac2d4c699
commit 099ab929db
23 changed files with 163 additions and 284 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>
)