Skip to content

Commit

Permalink
Enhance GitHub Logo Button with Hover Effect (#500)
Browse files Browse the repository at this point in the history
Co-authored-by: Gigin George <[email protected]>
  • Loading branch information
abhinav26966 and gigincg authored Aug 23, 2024
1 parent 4f46253 commit dcc24ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/navbar/ContributeButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ const ContributeButton = () => {
return (
<Link
href={`https://github.com/${env.NEXT_PUBLIC_GITHUB_ORG}`}
className="flex items-center justify-center"
className="flex items-center justify-center"
rel="nonreferrer"
>
<div className="flex cursor-pointer flex-row items-center justify-center gap-1">
<AiFillGithub className="text-3xl" />
<div className="flex cursor-pointer flex-row items-center justify-center gap-1 transition-transform duration-200 hover:scale-110">
<AiFillGithub className="text-3xl transition-colors duration-200 hover:text-gray-500" />
</div>
</Link>
);
Expand Down

0 comments on commit dcc24ba

Please sign in to comment.