Skip to content

Commit

Permalink
Update header font size (#41)
Browse files Browse the repository at this point in the history
* Update header font size

* fix lint
  • Loading branch information
gustavorosolem authored Aug 19, 2021
1 parent 8504619 commit c054550
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions styleguide/src/Layout/Box/Components/Header/BoxHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ export const BoxHeader = React.memo(
>
<div className="flex-1 min-w-0 mr-2">
{title && (
<h3 className={`tracking-3 text-xl font-semibold break-words`}>
<h3
className={`tracking-3 text-base font-semibold break-words`}
>
{title}
</h3>
)}
{subtitle && (
<h4 className="tracking-4 text-base text-on-base-2 leading-6 break-words mt-1">
<h4 className="tracking-4 text-sm text-on-base-2 leading-6 break-words">
{subtitle}
</h4>
)}
Expand Down

0 comments on commit c054550

Please sign in to comment.