Skip to content

Commit

Permalink
Fix GraphNode styling
Browse files Browse the repository at this point in the history
  • Loading branch information
somebody1234 committed Sep 27, 2023
1 parent b4937bb commit 8ffd358
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions app/gui2/src/components/GraphNode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -429,33 +429,27 @@ function updatePreprocessor(module: string, method: string, ...args: string[]) {
.GraphNode {
color: red;
position: absolute;
border-radius: var(--radius-full);
}
.GraphNode.selected {
border: var(--selected-node-border-width) solid rgb(89 107 129 / 20%);
margin: calc(0px - var(--selected-node-border-width));
}
.node {
position: relative;
top: 0;
left: 0;
caret-shape: bar;
background: #596b81;
background-clip: padding-box;
border-radius: var(--radius-full);
}
.Node.selected {
border: var(--selected-node-border-width) solid rgb(89 107 129 / 20%);
margin: calc(0px - var(--selected-node-border-width));
}
.Node > div {
display: flex;
flex-direction: row;
align-items: center;
white-space: nowrap;
background: #222;
padding: 4px 8px;
border-radius: var(--radius-full);
}
.binding {
Expand Down

0 comments on commit 8ffd358

Please sign in to comment.