Skip to content

Commit

Permalink
Bug Fix: Dark Theme Tag Selector Color Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalmaster committed Dec 24, 2024
1 parent e5d613a commit 7263d79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/overlay/PracticeOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -403,12 +403,12 @@ const TagSelectorItemWrapper = styled.div<{ active: boolean }>`
display: flex;
justify-content: space-between;
padding: 4px 6px;
background-color: ${({ active }) => (active ? '#e8edf4' : 'white')};
background-color: ${({ active }) => (active ? 'rgba(0, 0, 0, 0.05)' : 'transparent')};
user-select: none;
&:hover {
cursor: pointer;
background-color: ${({ active }) => (active ? '#e8edf4' : '#f6f9fd')};
background-color: ${({ active }) => (active ? 'rgba(0, 0, 0, 0.05)' : 'rgba(0, 0, 0, 0.03)')};
}
`;

Expand Down

0 comments on commit 7263d79

Please sign in to comment.