updated skeleton w and h

This commit is contained in:
Polaris 2024-08-27 17:42:31 -04:00
parent 870df202d0
commit 92a9755bc0

View File

@ -31,7 +31,7 @@ const ImageCell: React.FC<ImageCellProps> = ({ jacketPath, title }) => {
onError={handleImageError}
/>
) : (
<Skeleton className="mr-2 inline-block h-8 w-8" />
<Skeleton className="mr-2 inline-block h-[100px] w-[100px]" />
)}
<span className="truncate">{title}</span>
</div>