Skip to content

Commit

Permalink
⚒️ Build changes for v1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yashsehgal committed Jan 20, 2024
1 parent 6b53ab0 commit 27e1648
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/tab-menu/tab-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ const TabMenu = forwardRef<HTMLDivElement, TabMenuProps>(
)}>
<Grid
ref={ref}
className={cn('w-fit', stretch && "w-full", className)}
className={cn('w-fit', stretch && 'w-full', className)}
cols={options.length}
alignItems="center"
justifyContent={"center"}
justifyContent={'center'}
{...props}>
{options.map((option, index) => {
return (
Expand Down Expand Up @@ -65,7 +65,7 @@ const TabMenuOption = forwardRef<HTMLButtonElement, TabMenuOptionProps>(
'tab-menu-option px-3 py-1.5 transition-all',
!isSelected && 'hover:border-b-2 hover:border-black/10',
isSelected &&
'border-b-2 border-b-black drop-shadow-lg before:outline-none',
'border-b-2 border-b-black drop-shadow-lg before:outline-none',
className,
)}
aria-label={label}
Expand Down

0 comments on commit 27e1648

Please sign in to comment.