Skip to content

Commit

Permalink
remove transition
Browse files Browse the repository at this point in the history
  • Loading branch information
jpan8866 committed Nov 7, 2024
1 parent e9aa39b commit 2d8ec78
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export class ShadowOverlayService extends Disposable implements IShadowOverlaySe
pointerEvents: string;
backgroundColor: string;
boxShadow: string;
transition: string,
}> = new Map();

constructor(
Expand Down Expand Up @@ -79,11 +78,8 @@ export class ShadowOverlayService extends Disposable implements IShadowOverlaySe
pointerEvents: element.style.pointerEvents,
backgroundColor: element.style.backgroundColor,
boxShadow: element.style.boxShadow,
transition: element.style.transition
});
}
element.style.transition = 'box-shadow 0.3s ease-in-out';

element.style.position = 'absolute';
element.style.zIndex = '3000';
element.style.isolation = 'isolate';
Expand Down

0 comments on commit 2d8ec78

Please sign in to comment.