feat (ui): netwerken en files verfraaid
This commit is contained in:
@@ -653,11 +653,11 @@
|
||||
.attr('class', d => `graphNode ${d.type}`);
|
||||
|
||||
node.append('circle')
|
||||
.attr('r', d => d.type === 'network' ? 10 : 8);
|
||||
.attr('r', d => d.type === 'network' ? 14 : 9);
|
||||
|
||||
node.append('text')
|
||||
.attr('class', 'graphLabel')
|
||||
.attr('x', 12)
|
||||
.attr('x', d => d.type === 'network' ? 18 : 12)
|
||||
.attr('y', 4)
|
||||
.text(d => d.label || d.key);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user