We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 45961b7 + 61d4af9 commit 6ead0bcCopy full SHA for 6ead0bc
1 file changed
src/components/topmate/TopMateCard.tsx
@@ -96,11 +96,18 @@ const TopMateCard: React.FC<TopMateCardProps> = ({
96
</a>
97
</div>
98
99
- <img
100
- src="/icons/topmate.png"
101
- alt="Topmate"
102
- className="h-4 w-auto opacity-80"
103
- />
+ <div className="flex items-center gap-2">
+ {/* Show only the circular icon part of the Topmate logo */}
+ <div className="h-4 w-4 overflow-hidden flex-shrink-0 rounded-sm">
+ <img
+ src="/icons/topmate.png"
104
+ alt="Topmate icon"
105
+ className="h-4 w-auto object-cover object-left opacity-90"
106
+ />
107
+ </div>
108
+ {/* Theme-aware text to ensure readability on dark backgrounds */}
109
+ <span className={`text-sm font-semibold ${isDark ? 'text-gray-200' : 'text-gray-700'}`}>topmate</span>
110
111
112
113
0 commit comments