use proper tailwind sizes for avatar imgs

pull/64/head
Dario Piotrowicz 2023-01-10 16:57:40 +00:00
rodzic 48fe4135b4
commit d1e23e23e0
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -5,5 +5,5 @@ type Props = {
}
export const Avatar = component$<Props>(({ src }) => {
return <img class="rounded" style={{ width: '46px', height: '46px' }} src={src} />
return <img class="rounded h-12 w-12" src={src} />
})