From 9a3869683e4307db8cb0d097d5834386d045394f Mon Sep 17 00:00:00 2001 From: Jason Park Date: Mon, 13 Nov 2023 23:59:25 +0900 Subject: [PATCH] feat: fixing button styling due to unknown errors in dev env --- apps/career/src/components/common/IntersestGrid.tsx | 2 +- apps/career/src/components/common/JobPostButton.tsx | 2 +- apps/career/src/components/jobdetail/JobContent.tsx | 2 +- apps/career/src/components/jobdetail/JobOverview.tsx | 4 ++-- apps/career/src/components/joblist/PostRegisterProfile.tsx | 2 +- apps/career/src/components/joblist/PreRegisterProfile.tsx | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/career/src/components/common/IntersestGrid.tsx b/apps/career/src/components/common/IntersestGrid.tsx index 7505a1fe..e6ce9270 100644 --- a/apps/career/src/components/common/IntersestGrid.tsx +++ b/apps/career/src/components/common/IntersestGrid.tsx @@ -12,7 +12,7 @@ const InterestGrid = ({ options, selectedInterests, onInterestChange }) => { key={option.value} className={`mb-2 inline-block w-24 overflow-hidden rounded-full px-2 py-1 font-sans ${ selectedInterests.includes(option.value) - ? "bg-light-card3 dark:bg-dark-card2" // Selected style + ? "bg-light-main dark:bg-dark-main" // Selected style : "bg-light-card2 dark:bg-dark-card1" // Unselected style }`} onClick={() => handleInterestClick(option.value)} diff --git a/apps/career/src/components/common/JobPostButton.tsx b/apps/career/src/components/common/JobPostButton.tsx index 80e5d37b..dcba7cb4 100644 --- a/apps/career/src/components/common/JobPostButton.tsx +++ b/apps/career/src/components/common/JobPostButton.tsx @@ -9,7 +9,7 @@ const JobPostButton = () => { return ( diff --git a/apps/career/src/components/jobdetail/JobContent.tsx b/apps/career/src/components/jobdetail/JobContent.tsx index 6befc734..86ad3984 100644 --- a/apps/career/src/components/jobdetail/JobContent.tsx +++ b/apps/career/src/components/jobdetail/JobContent.tsx @@ -67,7 +67,7 @@ const JobContent = ({ job }: { job: JobProps }) => {
{ if (job && job.apply) { window.open(job.apply, "_blank") diff --git a/apps/career/src/components/jobdetail/JobOverview.tsx b/apps/career/src/components/jobdetail/JobOverview.tsx index 995b6869..c0e69f23 100644 --- a/apps/career/src/components/jobdetail/JobOverview.tsx +++ b/apps/career/src/components/jobdetail/JobOverview.tsx @@ -72,7 +72,7 @@ const JobOverview = ({ job }: { job: JobProps }) => { } return (
  • -
    +
    {detail.icon && {detail.icon}}

    @@ -87,7 +87,7 @@ const JobOverview = ({ job }: { job: JobProps }) => {
    { if (job && job.apply) { window.open(job.apply, "_blank") diff --git a/apps/career/src/components/joblist/PostRegisterProfile.tsx b/apps/career/src/components/joblist/PostRegisterProfile.tsx index 9da20415..1bb7e3d4 100644 --- a/apps/career/src/components/joblist/PostRegisterProfile.tsx +++ b/apps/career/src/components/joblist/PostRegisterProfile.tsx @@ -129,7 +129,7 @@ const PostRegisterProfile: React.FC = ({
    diff --git a/apps/career/src/components/joblist/PreRegisterProfile.tsx b/apps/career/src/components/joblist/PreRegisterProfile.tsx index ab38e16e..4ef9abe7 100644 --- a/apps/career/src/components/joblist/PreRegisterProfile.tsx +++ b/apps/career/src/components/joblist/PreRegisterProfile.tsx @@ -33,7 +33,7 @@ const PreRegisterProfile: React.FC = ({