Skip to content

Commit

Permalink
feat: text size to section title of job content (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonNotJson authored Nov 16, 2023
1 parent 2901e9a commit 80c3378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/career/src/components/jobdetail/JobContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const JobContent = ({
<div className="p-6">
{jobContentSections.map((section, index) => (
<div key={index} className="mt-5">
<h3 className="text-bold mb-3">{section.title}</h3>
<h3 className="text-bold mb-3 text-5xl">{section.title}</h3>
<p className="mb-0 whitespace-pre-line">{section.content}</p>
</div>
))}
Expand Down

0 comments on commit 80c3378

Please sign in to comment.