Skip to content

Commit

Permalink
style: added icon hover #1829 #1860
Browse files Browse the repository at this point in the history
  • Loading branch information
Harshu467 authored Jul 27, 2023
1 parent 1372b3d commit a8a62c5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions app/projects/[username]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ function ProjectList() {
href={userObj.Social_media?.gitHub}
target="_blank"
rel="noreferrer"
className="cursor-pointer inline-flex h-10 items-center rounded-lg font-extrabold text-[1.5rem] hover:scale-110 transition-all duration-300 ease-in-out hover:text-purple-500"
className="cursor-pointer inline-flex h-10 items-center rounded-lg font-extrabold text-[1.5rem] hover:scale-110 transition-all duration-300 ease-in-out hover:text-gray-500"
aria-label="Github"
>
<FaGithub />
<FaGithub />
</a>
</div>
)}
Expand All @@ -162,10 +162,10 @@ function ProjectList() {
href={userObj.Social_media?.LinkedIn}
target="_blank"
rel="noreferrer"
className="cursor-pointer inline-flex h-10 items-center rounded-lg font-extrabold text-[1.5rem] hover:scale-110 transition-all duration-300 ease-in-out hover:text-purple-500"
className="cursor-pointer inline-flex h-10 items-center rounded-lg font-extrabold text-[1.5rem] hover:scale-110 transition-all duration-300 ease-in-out hover:text-blue-900"
aria-label="Github"
>
<FaLinkedin />
<FaLinkedin />
</a>
</div>
)}
Expand All @@ -175,10 +175,10 @@ function ProjectList() {
href={userObj.Social_media?.Twitter}
target="_blank"
rel="noreferrer"
className="cursor-pointer inline-flex h-10 items-center rounded-lg font-extrabold text-[1.5rem] hover:scale-110 transition-all duration-300 ease-in-out hover:text-purple-500"
className="cursor-pointer inline-flex h-10 items-center rounded-lg font-extrabold text-[1.5rem] hover:scale-110 transition-all duration-300 ease-in-out hover:text-blue-500"
aria-label="Github"
>
<FaTwitter />
<FaTwitter />
</a>
</div>
)}
Expand All @@ -188,7 +188,7 @@ function ProjectList() {
href={userObj.Social_media?.YouTube}
target="_blank"
rel="noreferrer"
className="cursor-pointer inline-flex h-10 items-center rounded-lg font-extrabold text-[1.5rem] hover:scale-110 transition-all duration-300 ease-in-out hover:text-purple-500"
className="cursor-pointer inline-flex h-10 items-center rounded-lg font-extrabold text-[1.5rem] hover:scale-110 transition-all duration-300 ease-in-out hover:text-red-900"
aria-label="Github"
>
<FaYoutube />
Expand All @@ -201,10 +201,10 @@ function ProjectList() {
href={userObj.Social_media?.Instagram}
target="_blank"
rel="noreferrer"
className="cursor-pointer inline-flex h-10 items-center rounded-lg font-extrabold text-[1.5rem] hover:scale-110 transition-all duration-300 ease-in-out hover:text-purple-500"
className="cursor-pointer inline-flex h-10 items-center rounded-lg font-extrabold text-[1.5rem] hover:scale-110 transition-all duration-300 ease-in-out hover:text-red-500"
aria-label="Github"
>
<FaInstagram />
<FaInstagram />
</a>
</div>
)}
Expand Down Expand Up @@ -237,10 +237,10 @@ function ProjectList() {
href={project.link}
target="_blank"
rel="noreferrer"
className="inline-flex h-10 items-center rounded-lg font-extrabold text-[2rem] hover:scale-110 transition-all duration-300 ease-in-out hover:text-purple-500 "
className="inline-flex h-10 items-center rounded-lg font-extrabold text-[2rem] hover:scale-110 transition-all duration-300 ease-in-out hover:text-gray-500 "
aria-label="Github"
>
<FaGithub size={30} />
<FaGithub size={30} />
</a>
</span>
</div>
Expand Down

0 comments on commit a8a62c5

Please sign in to comment.