refine outfit thumbnail card styles
This commit is contained in:
parent
b01feba038
commit
be7de27c5c
1 changed files with 10 additions and 1 deletions
|
@ -102,8 +102,17 @@ function OutfitCard({ outfit }) {
|
||||||
borderRadius="md"
|
borderRadius="md"
|
||||||
padding="3"
|
padding="3"
|
||||||
width="calc(150px + 2em)"
|
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>
|
<Box>{outfit.name}</Box>
|
||||||
</Flex>
|
</Flex>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue