Fix wrong color for bookmark icon

This commit is contained in:
Lim Chee Aun 2023-04-09 00:19:15 +08:00
parent b2f9dd010e
commit 82d88dbe10

View file

@ -510,7 +510,7 @@ function Status({
<Icon
icon="bookmark"
style={{
color: bookmarked && 'var(--favourite-color)',
color: bookmarked && 'var(--link-color)',
}}
/>
<span>{bookmarked ? 'Unbookmark' : 'Bookmark'}</span>