diff --git a/components/molecules/ContributorProfileHeader/contributor-profile-header.tsx b/components/molecules/ContributorProfileHeader/contributor-profile-header.tsx index 761650b4de..01944f94d1 100644 --- a/components/molecules/ContributorProfileHeader/contributor-profile-header.tsx +++ b/components/molecules/ContributorProfileHeader/contributor-profile-header.tsx @@ -5,6 +5,7 @@ import Image from "next/image"; import { TfiMoreAlt } from "react-icons/tfi"; import { HiUserAdd } from "react-icons/hi"; +import { SlUserFollowing } from "react-icons/sl"; import { SignInWithOAuthCredentials, User } from "@supabase/supabase-js"; import { usePostHog } from "posthog-js/react"; import { clsx } from "clsx"; @@ -166,18 +167,38 @@ const ContributorProfileHeader = ({ !isOwner && ( <> {isFollowing ? ( - + <> + + + ) : ( - + <> + + + )} ) @@ -269,8 +290,6 @@ const ContributorProfileHeader = ({ - - {/* Mobile dropdown menu */} )} @@ -393,7 +412,7 @@ const AddToListDropdown = ({ username }: { username: string }) => { } - className="w-10 px-4" + className="w-10 md:px-4 max-sm:text-sm" placeholder="Add to list" options={listOptions} selected={selectedList}