Skip to content

Commit

Permalink
format #133
Browse files Browse the repository at this point in the history
  • Loading branch information
ukorvl committed Jan 3, 2024
1 parent 4609071 commit f0fc39d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions site/src/components/pages/OpenJobs/Job/Job.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ export const Job = ({ job: { id, remote, type, title, plainTextDescription } }:
<div className={s.title}>
<HeadingXLarge overrides={getTitleOverrides(!!isMobile)}>{title}</HeadingXLarge>
</div>
<div className={s.description}>
{plainTextDescription}
</div>
<div className={s.description}>{plainTextDescription}</div>
</Card>
)
}
2 changes: 1 addition & 1 deletion site/src/components/pages/OpenJobs/overrides.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const getCommonHeadingOverrides = (isMobile: boolean): BlockOverrides =>
export const getPageTitleOverrides = (isMobile: boolean): BlockOverrides => ({
Block: {
style: {
marginBottom: isMobile ? '60px' :'32px',
marginBottom: isMobile ? '60px' : '32px',
...getHeadingCommonStyles(isMobile),
},
},
Expand Down

0 comments on commit f0fc39d

Please sign in to comment.