Skip to content

Commit

Permalink
feat: ✨ 修改tag标签样式BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
G committed Dec 22, 2023
1 parent 67d356c commit 96c5e48
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const useStyles = createStyles(({ token }, props: { active: boolean }) => {
padding: '0 8px',
borderRadius: '3px',
lineHeight: '24px',
color: '#555',
background: '#fff',
color: active ? '#fff' : '#555',
background: active ? token.colorPrimary : '#fff',
overflow: 'hidden',
cursor: 'pointer',
'&__dot': {
Expand Down

0 comments on commit 96c5e48

Please sign in to comment.