Skip to content
This repository has been archived by the owner on Oct 6, 2020. It is now read-only.

Commit

Permalink
fix(Card): Decrease shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
kylealwyn committed Sep 6, 2018
1 parent f1e595d commit 02be93a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Card/Card.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ const StyledCard = createComponent({
name: 'Card',
}).extend`
background: white;
box-shadow: ${p => (p.shadow ? themeGet('shadow', '0 8px 30px rgba(0, 29, 54, 0.1)') : 'none')};
box-shadow: ${p =>
p.shadow ? themeGet('shadow', '0 4px 10px rgba(0, 29, 54, 0.04), 0 -2px 6px rgba(0, 29, 54, 0.025);') : 'none'};
${borderRadius};
${space};
Expand Down

0 comments on commit 02be93a

Please sign in to comment.