mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
updating border color to match label text color
This commit is contained in:
parent
7781d09623
commit
31d133fdf0
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ export function LabelChip(props: LabelChipProps): JSX.Element {
|
|||
whiteSpace: 'nowrap',
|
||||
cursor: 'pointer',
|
||||
backgroundClip: 'padding-box',
|
||||
border: `1px solid rgba(${color[0]}, ${color[1]}, ${color[2]}, 0.7)`,
|
||||
border: isDarkMode ? `1px solid ${darkThemeTextColor}` :`1px solid rgba(${color[0]}, ${color[1]}, ${color[2]}, 0.7)`,
|
||||
backgroundColor: isDarkMode
|
||||
? `rgba(${color[0]}, ${color[1]}, ${color[2]}, 0.08)`
|
||||
: props.color,
|
||||
|
|
|
|||
Loading…
Reference in a new issue