Skip to content

Commit

Permalink
fix: alignement tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurlbrjc committed Dec 19, 2024
1 parent 74d6fab commit cd61c35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/ui/Navigation/Tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function Tab({
aria-controls={controls}
aria-selected={selected}
onClick={onSelectTab}
className={`text-m-medium text-grey_800 px-4 pb-2 flex items-center cursor-pointer ${
className={`h-full text-m-medium text-grey_800 px-4 pb-2 flex items-center cursor-pointer ${
selected
? 'text-m-bold border-b-4 border-b-primary'
: 'hover:font-bold'
Expand All @@ -44,7 +44,7 @@ export default function Tab({
name={iconName}
aria-hidden={true}
focusable={false}
className={`w-4 h-4 mr-2 ${
className={`shrink-0 w-4 h-4 mr-2 ${
selected
? 'fill-primary stroke-primary'
: 'fill-grey_800 stroke-grey_800'
Expand Down

0 comments on commit cd61c35

Please sign in to comment.