dragon-graph-lib 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -51,7 +51,7 @@
51
51
  width: fit-content;
52
52
  display: flex;
53
53
  flex-flow: column;
54
- gap: 12px;
54
+ gap: var(--dgl-node-padding);
55
55
  cursor: pointer;
56
56
  user-select: none;
57
57
  border: 1px solid var(--dgl-node-text);
@@ -59,7 +59,7 @@
59
59
  }
60
60
 
61
61
  .dgl-socket:hover {
62
- outline: 3px solid var(--dgl-node-text);
62
+ outline: 3px solid var(--dgl-node-text);
63
63
  border-width: 10px;
64
64
  }
65
65
 
@@ -74,15 +74,14 @@
74
74
  .dgl-connection {
75
75
  overflow: visible;
76
76
  position: absolute;
77
+ left: 0;
78
+ right: 0;
77
79
  }
78
80
  .dgl-connection path {
79
81
  stroke: var(--dgl-connection-color);
80
82
  stroke-width: var( --dgl-connection-width);
81
83
  fill: none;
82
84
  }
83
- .dgl-preview {
84
- max-width: 20ch;
85
- }
86
85
 
87
86
  .dgl-title {
88
87
  font-weight: bold;
@@ -100,6 +99,10 @@
100
99
  position: relative;
101
100
  }
102
101
 
102
+ .dgl-input-label {
103
+ margin-right: var(--dgl-node-padding);
104
+ }
105
+
103
106
  .dgl-output {
104
107
  justify-content: end;
105
108
  left: calc(var(--dgl-node-padding) + var(--dgl-socket-size) / 2);