mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-25 18:55:44 +03:00
Fix wrong color for bookmark icon
This commit is contained in:
parent
b2f9dd010e
commit
82d88dbe10
1 changed files with 1 additions and 1 deletions
|
@ -510,7 +510,7 @@ function Status({
|
||||||
<Icon
|
<Icon
|
||||||
icon="bookmark"
|
icon="bookmark"
|
||||||
style={{
|
style={{
|
||||||
color: bookmarked && 'var(--favourite-color)',
|
color: bookmarked && 'var(--link-color)',
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<span>{bookmarked ? 'Unbookmark' : 'Bookmark'}</span>
|
<span>{bookmarked ? 'Unbookmark' : 'Bookmark'}</span>
|
||||||
|
|
Loading…
Reference in a new issue