Skip to content

Commit 305b01c

Browse files
committed
bg change
1 parent 3cd63c9 commit 305b01c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

apps/array/src/renderer/features/panels/components/DraggableTab.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ export const DraggableTab: React.FC<DraggableTabProps> = ({
7676
px="4"
7777
className="group relative cursor-grab select-none border-r border-b-2 transition-colors"
7878
style={{
79-
backgroundColor: "transparent",
8079
borderRightColor: "var(--gray-6)",
8180
borderBottomColor: isActive ? "var(--accent-10)" : "transparent",
8281
color: isActive ? "var(--accent-12)" : "var(--gray-11)",
@@ -87,13 +86,11 @@ export const DraggableTab: React.FC<DraggableTabProps> = ({
8786
onContextMenu={handleContextMenu}
8887
onMouseEnter={(e) => {
8988
if (!isActive) {
90-
e.currentTarget.style.backgroundColor = "var(--gray-3)";
9189
e.currentTarget.style.color = "var(--gray-12)";
9290
}
9391
}}
9492
onMouseLeave={(e) => {
9593
if (!isActive) {
96-
e.currentTarget.style.backgroundColor = "transparent";
9794
e.currentTarget.style.color = "var(--gray-11)";
9895
}
9996
}}

0 commit comments

Comments
 (0)