make logos look better on item cards

This commit is contained in:
Violet Caulfield
2025-02-05 18:01:39 -06:00
parent 31f5a552db
commit 2d0b33f1ca
+1 -1
View File
@@ -18,7 +18,7 @@ export function ItemCard(props: CardProps) {
const dimensions = props.width && typeof(props.width) === "number" ? { width: props.width, height: props.width } : { width: 150, height: 150 };
const logoDimensions = props.width && typeof(props.width) === "number" ? { width: props.width / 2, height: props.width / 6 }: { width: 100, height: 30 };
const logoDimensions = props.width && typeof(props.width) === "number" ? { width: props.width / 2, height: props.width / 6 }: { width: 100, height: 20 };
return (
<View