Skip to content

Commit f25e32a

Browse files
committed
intial material content card
1 parent 4d044cd commit f25e32a

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

src/components/Card.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,14 @@ const Card = styled.div`
2828
props.contentCard &&
2929
`
3030
color: rgba(0, 0, 0, 0.75);
31-
border-radius: 4px;
32-
box-shadow: 0 6px 8px rgba(102, 119, 136, 0.03),
33-
0 1px 2px rgba(102, 119, 136, 0.3);
34-
`}
31+
border: 1px solid #dfe1e5;
32+
transition: 0.1s all ease;
33+
border-radius: 24px;
34+
35+
&:hover {
36+
background: #f7f7f7;
37+
}
38+
`}
3539
}
3640
`;
3741

0 commit comments

Comments
 (0)