Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
fix: text not visible text-gray-400 (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaganpreetKaurKalsi authored Jun 30, 2024
1 parent f1e89d7 commit 0c2b088
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Repos.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ export default function Repos({ minimumVotes = 5, keyword, sort }) {
<span className="absolute inset-0" />
</Link>
</h2>
{repo.language && <p className="text-xs">({repo.language})</p>}
{repo.language && <p className="text-xs text-gray-400">({repo.language})</p>}
{repo.stars && (
<p className="text-xs hidden sm:inline-block">
<p className="text-xs hidden sm:inline-block text-gray-400">
({abbreviateNumber(repo.stars)} ⭐️)
</p>
)}
Expand Down

0 comments on commit 0c2b088

Please sign in to comment.