refine outfit thumbnail card styles

This commit is contained in:
Emi Matchu 2021-01-04 08:39:15 +00:00
parent b01feba038
commit be7de27c5c

View file

@ -102,8 +102,17 @@ function OutfitCard({ outfit }) {
borderRadius="md"
padding="3"
width="calc(150px + 2em)"
backgroundColor="white"
>
<Box as="img" src={thumbnailUrl} width={150} height={150} />
<Box
as="img"
src={thumbnailUrl}
width={150}
height={150}
marginBottom="2"
borderRadius="md"
background="gray.700"
/>
<Box>{outfit.name}</Box>
</Flex>
);