Skip to content

Commit

Permalink
Use theme color for background-color
Browse files Browse the repository at this point in the history
  • Loading branch information
Anahkiasen committed Mar 20, 2023
1 parent 7fff1dc commit 614cd1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/ButtonCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function ButtonCard({
css={`
flex-direction: column;
align-items: flex-start;
background-color: rgba(255, 255, 255, 1);
background-color: ${({ theme }) => theme.colors.white};
box-shadow: ${({ theme }) => theme.components.button.boxShadow.small};
&:hover {
Expand Down

0 comments on commit 614cd1a

Please sign in to comment.