Skip to content

Commit

Permalink
Add dark shadows
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamedmansour committed Jun 30, 2021
1 parent 400f6bd commit e5070a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface CardProps extends HTMLChakraProps<"div">, FlexOptions {

export const Card = forwardRef<CardProps, 'div'>((props: CardProps, ref: React.ForwardedRef<any>) => {
return (
<Flex direction="column" px="2" py="3" rounded="md" shadow="lg" bg="brand.card" ref={ref} {...props}>
<Flex direction="column" px="2" py="3" rounded="md" shadow="dark-lg" bg="brand.card" ref={ref} {...props}>
{props.children}
</Flex>
)
Expand Down

0 comments on commit e5070a5

Please sign in to comment.