Skip to content

Commit

Permalink
fix: remove edges glitch (#3689)
Browse files Browse the repository at this point in the history
fix: Update transition property in App.css

The transition property in App.css has been updated to only transition the color property instead of all properties. This change improves performance by reducing unnecessary transitions.
  • Loading branch information
anovazzi1 authored Sep 4, 2024
1 parent 5ad48b4 commit addadeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ body {

.react-flow__edge .react-flow__edge-path {
stroke: var(--connection) !important;
transition: all;
transition: color;
transition-duration: 150ms;
}

Expand Down

0 comments on commit addadeb

Please sign in to comment.