Skip to content

Commit 720ad9f

Browse files
committed
add hover text color
1 parent 14b794b commit 720ad9f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

client/src/components/SponsorBtn.jsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ function SponsorBtn(){
99
return (
1010
<div className="flex items-center justify-center mt-3 cursor-pointer border-b border-dotted pb-2">
1111
<img src={sponsorImg} className="h-5 w-5 rounded"></img>
12-
<h1 className="text-white pl-1 cursor-pointer font-sans" onClick={clickHandler}>Sponsor</h1>
12+
<h1
13+
className="text-white hover:text-emerald-300 pl-1 cursor-pointer font-sans"
14+
onClick={clickHandler}
15+
>
16+
Sponsor
17+
</h1>
1318
</div>
1419
);
1520
}

0 commit comments

Comments
 (0)