Skip to content

Commit

Permalink
Merge pull request #67 from GabsEdits/fix-darkmode
Browse files Browse the repository at this point in the history
fix: dark mode GitHub sponsors cards
  • Loading branch information
mirkobrombin authored Sep 18, 2024
2 parents afc5063 + 4b4a079 commit 315304e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/funding.astro
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class Donations {
getPersonMarkup(person: string, hasPic: boolean): string {
return `<div class="flex items-center space-x-2">
${hasPic ? `<img src="https://avatars.githubusercontent.com/${person}?s=120" alt="${person}" class="w-12 h-12 rounded-full">` : ''}
<span class="bg-gray-100 px-4 py-2 rounded-lg text-center">${person}</span>
<span class="bg-gray-100 dark:bg-gray-800 px-4 py-2 rounded-lg text-center">${person}</span>
</div>`;
}
}
Expand Down

0 comments on commit 315304e

Please sign in to comment.