Skip to content

Commit

Permalink
chore(web): Correct EntryItem Theme Color (#1067)
Browse files Browse the repository at this point in the history
  • Loading branch information
OpeDada authored Jul 29, 2024
1 parent 11b2b41 commit a1e0620
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/beta/ui/components/EntryItem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ const Wrapper = styled("div")<{
backgroundColor: theme.bg[1],
}),
...(highlight && {
backgroundColor: theme.primary.weak,
backgroundColor: theme.select.main,
}),
["&:active"]: {
backgroundColor: highlight
? theme.primary.main
? theme.select.strong
: hovered
? theme.relative.light
: "transparent",
Expand Down

0 comments on commit a1e0620

Please sign in to comment.