Skip to content

Commit

Permalink
Fix a color bug with cards (#820)
Browse files Browse the repository at this point in the history
  • Loading branch information
selbekk authored Sep 4, 2023
1 parent 6e88527 commit 5b33fdc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/perfect-tools-end.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@vygruppen/spor-react": patch
---

Card: Correct the colors of white cards
2 changes: 1 addition & 1 deletion packages/spor-react/src/theme/components/card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function getColorSchemeBaseProps({ colorScheme }: CardThemeProps): {
switch (colorScheme) {
case "white":
return {
backgroundColor: "lightGrey",
backgroundColor: "white",
};
case "grey":
return {
Expand Down

0 comments on commit 5b33fdc

Please sign in to comment.