Skip to content

Commit

Permalink
darker bg when hovering tab
Browse files Browse the repository at this point in the history
  • Loading branch information
vieiralucas committed Feb 5, 2025
1 parent bf8a8de commit d0031d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/components/v2Editor/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ function Tab(props: TabProps) {
'flex gap-x-2 items-center border-l border-r border-t border-gray-200 px-2.5 py-1.5 rounded-t-sm whitespace-nowrap',
props.tabRef.isCurrent
? 'bg-white text-gray-950'
: 'bg-gray-50 text-gray-400',
: 'bg-gray-50 text-gray-400 hover:bg-gray-100',
isDragging ? 'opacity-0' : '',
!props.isFirst ? '-ml-[1px]' : ''
)}
Expand Down

0 comments on commit d0031d0

Please sign in to comment.