Skip to content

Commit

Permalink
fix: tabs fontSize
Browse files Browse the repository at this point in the history
  • Loading branch information
wiktoriasalamon committed Jul 28, 2024
1 parent 81e3dc9 commit 4ded9e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/common/Tabs/Tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const Tabs: FC<TabsProps> = ({ tabs, current, onTabChange, className }) =
onClick={() => onTabChange(tab)}
aria-current={tab.id === current.id ? 'page' : undefined}
className={generateClassNames(
'cursor-pointer whitespace-nowrap border-b-2 px-1 py-4 text-sm font-medium transition duration-75 first-letter:uppercase',
'cursor-pointer whitespace-nowrap border-b-2 px-1 py-4 text-base font-medium transition duration-75 first-letter:uppercase',
tab.id === current.id
? 'border-blue-800 text-blue-800'
: 'border-transparent text-navy-500 hover:border-navy-300 hover:text-navy-700',
Expand Down

0 comments on commit 4ded9e0

Please sign in to comment.