Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
feat: scale the connections on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
prescientmoon committed Apr 27, 2020
1 parent 75164b7 commit 3083044
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions public/styles/components/node.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
border: 10px solid red;
}

.node-input {
.node-input,
.node-connection {
transition: stroke-width $transition-time;
}

.node-input:hover {
.node-input:hover,
.node-connection:hover {
stroke-width: 9px;
}

Expand Down

0 comments on commit 3083044

Please sign in to comment.