Skip to content

Commit 42a70da

Browse files
committed
🐛 💄 white on white
1 parent 9452bd6 commit 42a70da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/atomic/molecules/Card/styles.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,17 @@ export const Container = styled.View.attrs({
1010
},
1111
shadowRadius: 10,
1212
shadowOpacity: 0.1,
13-
backgroundColor: "white",
1413
})`
1514
width: 100%;
1615
flex-direction: row;
1716
justify-content: space-between;
1817
padding: 20px;
1918
border-radius: 8px;
19+
background-color: ${({ theme }) => theme.title};
2020
`;
2121

2222
export const CardTitle = styled(Title)`
2323
flex: 1;
2424
margin-left: 10px;
25+
color: ${({ theme }) => theme.background};
2526
`;

0 commit comments

Comments
 (0)