Skip to content
This repository was archived by the owner on May 6, 2022. It is now read-only.

Commit 05cf8e8

Browse files
committed
fix(Card): Remove border
1 parent 45952de commit 05cf8e8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/cards/utils/BaseCard.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ import CardProps from './CardProps';
55

66
const BaseCard = styled.div<CardProps>`
77
border-radius: ${({ theme }) => theme.radius.Medium};
8-
border: 3px solid rgba(0, 0, 0, ${({ backgroundColor }) => backgroundColor !== undefined
9-
? backgroundColor
10-
: ({ theme }) => theme.color.White});
118
box-shadow: ${({ onClick, theme }) =>
129
onClick !== undefined ? theme.shadow.Medium : theme.shadow.Small};
1310
box-sizing: border-box;

0 commit comments

Comments
 (0)