Skip to content

Commit

Permalink
Use only tailwind font size
Browse files Browse the repository at this point in the history
  • Loading branch information
adrielTosi committed Feb 1, 2024
1 parent cd21c32 commit 909d27f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/frontend/src/components/Typography/Typography.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const Text = ({ size = 'default', weight = 'regular', children }: TextPro
<p
className={clsx(common, {
'font-semibold': weight === 'bold',
'text-[1.25rem] leading-6': size === 'default',
'text-xl leading-6': size === 'default',
'text-sm leading-5': size === 'small',
'text-xs leading-4': size === 'tiny',
})}
Expand Down

0 comments on commit 909d27f

Please sign in to comment.