File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
apps/array/src/renderer/features/panels/components Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff 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 } }
You can’t perform that action at this time.
0 commit comments