Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: improper pointer actions 🛠 #1780

Merged
merged 4 commits into from
Jul 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions app/projects/[username]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function ProjectList() {
href={userObj.Social_media?.gitHub}
target="_blank"
rel="noreferrer"
className="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-purple-500"
aria-label="Github"
>
<FaGithub />
Expand All @@ -150,7 +150,7 @@ function ProjectList() {
href={userObj.Social_media?.LinkedIn}
target="_blank"
rel="noreferrer"
className="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-purple-500"
aria-label="Github"
>
<FaLinkedin />
Expand All @@ -163,7 +163,7 @@ function ProjectList() {
href={userObj.Social_media?.Twitter}
target="_blank"
rel="noreferrer"
className="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-purple-500"
aria-label="Github"
>
<FaTwitter />
Expand All @@ -176,7 +176,7 @@ function ProjectList() {
href={userObj.Social_media?.YouTube}
target="_blank"
rel="noreferrer"
className="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-purple-500"
aria-label="Github"
>
<FaYoutube />
Expand All @@ -189,7 +189,7 @@ function ProjectList() {
href={userObj.Social_media?.Instagram}
target="_blank"
rel="noreferrer"
className="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-purple-500"
aria-label="Github"
>
<FaInstagram />
Expand Down
2 changes: 1 addition & 1 deletion components/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const ProjectCard: NextPage<ProjectCardType> = ({ project }) => {
href={link}
target="_blank"
rel="noreferrer"
className=" px-4 items-center group flex gap-2 justify-center text-center text-white border w-1/2 border-gray-700 xl:text-[1rem] md:text-[0.8rem] rounded-md py-[0.35rem] "
className="cursor-pointer px-4 items-center group flex gap-2 justify-center text-center text-white border w-1/2 border-gray-700 xl:text-[1rem] md:text-[0.8rem] rounded-md py-[0.35rem] "
priyankarpal marked this conversation as resolved.
Show resolved Hide resolved
>
GitHub
<span
Expand Down