Skip to content

Commit

Permalink
fix(ui): make readed article color into gray (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
bestony authored Sep 11, 2024
1 parent 8d03308 commit 9125a49
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ export function ListItem({
<EntryTranslation
useOverlay
side="top"
className={envIsSafari ? "line-clamp-2 break-all" : undefined}
className={cn(
envIsSafari ? "line-clamp-2 break-all" : undefined,
asRead ? "text-zinc-400 dark:text-neutral-500" : undefined,
)}
source={entry.entries.title}
target={translation?.title}
/>
Expand Down

0 comments on commit 9125a49

Please sign in to comment.