From 7555df5b50d2a89cc2490ffcbaa9f382d3ae58bc Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Wed, 26 Mar 2025 15:29:43 +0500 Subject: [PATCH] web: fix active tab background --- apps/web/src/components/editor/action-bar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/components/editor/action-bar.tsx b/apps/web/src/components/editor/action-bar.tsx index 6cd1164f5..f691dc1bc 100644 --- a/apps/web/src/components/editor/action-bar.tsx +++ b/apps/web/src/components/editor/action-bar.tsx @@ -534,7 +534,7 @@ function Tab(props: TabProps) { transition, visibility: active?.id === id ? "hidden" : "visible", - bg: isActive ? "background-selected" : "transparent", + bg: isActive ? "background" : "transparent", justifyContent: "space-between", alignItems: "center", flexShrink: 0, @@ -542,7 +542,7 @@ function Tab(props: TabProps) { "& .closeTabButton": { opacity: 1 }, - bg: isActive ? "background-selected" : "hover" + bg: isActive ? "background" : "hover" } }} onContextMenu={(e) => {