From d0031d070d07fdf210d075215e2cf57c90513dea Mon Sep 17 00:00:00 2001 From: Lucas Vieira Date: Wed, 5 Feb 2025 17:02:21 -0300 Subject: [PATCH] darker bg when hovering tab --- apps/web/src/components/v2Editor/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/v2Editor/index.tsx b/apps/web/src/components/v2Editor/index.tsx index cc12bc79..c2c6a67c 100644 --- a/apps/web/src/components/v2Editor/index.tsx +++ b/apps/web/src/components/v2Editor/index.tsx @@ -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]' : '' )}