Skip to content

Commit

Permalink
fix(Navigation): show light text color in the dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
alina.shestakova committed Dec 27, 2024
1 parent abf49e5 commit 8036000
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const AnnotationWithPartial: FC<Props> = ({annotation, expanded, onToggle

return (
<>
<Markdown text={expanded ? value : text} />
<Markdown color={'complementary'} text={expanded ? value : text} />
{isFullText ? null : (
<ClickableText color={'secondary'} onClick={onToggle}>
{expanded ? 'Hide more' : 'Show more'}
Expand Down

0 comments on commit 8036000

Please sign in to comment.