Skip to content

Commit

Permalink
TW-1542 Fix font size for page header
Browse files Browse the repository at this point in the history
  • Loading branch information
keshan3262 committed Sep 18, 2024
1 parent f448902 commit 6aa1703
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/layouts/PageLayout/DefaultHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ export const DefaultHeader = memo<PropsWithChildren<DefaultHeaderProps>>(
</Button>
</div>

{pageTitle && <div className="flex items-center text-center text-font-medium-bold truncate">{pageTitle}</div>}
{pageTitle && (
<div className="flex items-center text-center text-font-regular-bold truncate">{pageTitle}</div>
)}

<div className="flex-1 flex items-center justify-end">{headerRightElem}</div>
</div>
Expand Down

0 comments on commit 6aa1703

Please sign in to comment.