Skip to content

Commit

Permalink
fix: timeline colors
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiejaoude committed Feb 1, 2024
1 parent 1211384 commit c6a1375
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Activity.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ export default function Activity() {
</Link>
<time
dateTime={rating.$updatedAt}
className="flex-none text-xs text-green-500"
className="flex-none text-xs text-gray-400"
>
{rating.timeAgo}
</time>
</div>
<p className="mt-3 truncate text-sm text-white">
<p className="mt-3 truncate text-sm text-gray-400">
Rated{" "}
<Link
href={`/rate?owner=${rating.owner}&name=${rating.name}`}
className="text-gray-400"
className="text-green-500"
>
{rating.owner}/{rating.name}
</Link>
Expand Down

0 comments on commit c6a1375

Please sign in to comment.