From 05734d7301e019b5f3a66ac533e4c045410ec122 Mon Sep 17 00:00:00 2001 From: Jason Park Date: Tue, 14 Nov 2023 00:10:22 +0900 Subject: [PATCH] chore: changing minor styling issues --- apps/career/src/components/jobdetail/CompanyOverview.tsx | 4 ++-- apps/career/src/components/jobdetail/JobContent.tsx | 8 ++------ apps/career/src/components/jobdetail/JobOverview.tsx | 2 +- apps/career/src/components/jobdetail/Jobdetail.tsx | 2 +- apps/career/src/components/joblist/JobCard.tsx | 4 +++- .../career/src/components/joblist/PostRegisterProfile.tsx | 8 ++++---- 6 files changed, 13 insertions(+), 15 deletions(-) diff --git a/apps/career/src/components/jobdetail/CompanyOverview.tsx b/apps/career/src/components/jobdetail/CompanyOverview.tsx index 9ab2c8fa..e8e476e4 100644 --- a/apps/career/src/components/jobdetail/CompanyOverview.tsx +++ b/apps/career/src/components/jobdetail/CompanyOverview.tsx @@ -21,7 +21,7 @@ const CompanyOverview = ({ job }: { job: JobProps }) => { return ( <> -
+

Company Overview

@@ -52,7 +52,7 @@ const CompanyOverview = ({ job }: { job: JobProps }) => { {info.content} ) : ( -

+

{info.content}

)} diff --git a/apps/career/src/components/jobdetail/JobContent.tsx b/apps/career/src/components/jobdetail/JobContent.tsx index 86ad3984..36eaaa15 100644 --- a/apps/career/src/components/jobdetail/JobContent.tsx +++ b/apps/career/src/components/jobdetail/JobContent.tsx @@ -55,12 +55,8 @@ const JobContent = ({ job }: { job: JobProps }) => {
{jobContentSections.map((section, index) => (
-

- {section.title} -

-

- {section.content} -

+

{section.title}

+

{section.content}

))}
diff --git a/apps/career/src/components/jobdetail/JobOverview.tsx b/apps/career/src/components/jobdetail/JobOverview.tsx index c0e69f23..6c11592c 100644 --- a/apps/career/src/components/jobdetail/JobOverview.tsx +++ b/apps/career/src/components/jobdetail/JobOverview.tsx @@ -60,7 +60,7 @@ const JobOverview = ({ job }: { job: JobProps }) => { return ( <> -
+

Job Overview

    diff --git a/apps/career/src/components/jobdetail/Jobdetail.tsx b/apps/career/src/components/jobdetail/Jobdetail.tsx index 6214162c..1d4e2dc4 100644 --- a/apps/career/src/components/jobdetail/Jobdetail.tsx +++ b/apps/career/src/components/jobdetail/Jobdetail.tsx @@ -38,7 +38,7 @@ const Jobdetail: React.FC = ({ return ( <> -
    +

    Careers

    diff --git a/apps/career/src/components/joblist/JobCard.tsx b/apps/career/src/components/joblist/JobCard.tsx index 6cf5dbff..2911d0d6 100644 --- a/apps/career/src/components/joblist/JobCard.tsx +++ b/apps/career/src/components/joblist/JobCard.tsx @@ -67,7 +67,9 @@ const JobCard: React.FC = ({ {/* Date Posted Section */}
    -

    {formattedTime}

    +

    + {formattedTime} +

    diff --git a/apps/career/src/components/joblist/PostRegisterProfile.tsx b/apps/career/src/components/joblist/PostRegisterProfile.tsx index 1bb7e3d4..a40cec73 100644 --- a/apps/career/src/components/joblist/PostRegisterProfile.tsx +++ b/apps/career/src/components/joblist/PostRegisterProfile.tsx @@ -101,7 +101,7 @@ const PostRegisterProfile: React.FC = ({ setIsModalOpen(!isModalOpen) } return ( -
    +

    Profile

    @@ -118,10 +118,10 @@ const PostRegisterProfile: React.FC = ({
      {profileInformation.map((info, index) => (
    • - {info.icon} + {info.icon}
      -

      {info.label}

      -

      {info.content}

      +

      {info.label}

      +

      {info.content}

    • ))}