mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Reading progress dot shouldnt be green
This commit is contained in:
parent
7fcd5e300d
commit
7f6c0e9e0a
1 changed files with 6 additions and 3 deletions
|
|
@ -118,9 +118,12 @@ export function LibraryListCard(props: LinkedItemCardProps): JSX.Element {
|
|||
)} min read`
|
||||
: null}
|
||||
{props.item.readingProgressPercent ?? 0 > 0 ? (
|
||||
<SpanBox css={{ color: '#55B938' }}>
|
||||
{` • ${Math.round(props.item.readingProgressPercent)}%`}
|
||||
</SpanBox>
|
||||
<>
|
||||
{` • `}
|
||||
<SpanBox css={{ color: '#55B938' }}>
|
||||
{`${Math.round(props.item.readingProgressPercent)}%`}
|
||||
</SpanBox>
|
||||
</>
|
||||
) : null}
|
||||
</Box>
|
||||
<Box
|
||||
|
|
|
|||
Loading…
Reference in a new issue