double fonts
Browse files
modular_graph_and_candidates.py
CHANGED
|
@@ -577,7 +577,7 @@ node.filter(d => d.cls !== 'base').append('circle').attr('r', d => 20*d.sz);
|
|
| 577 |
node.append('text')
|
| 578 |
.attr('class','node-label')
|
| 579 |
.attr('dy','-2.4em')
|
| 580 |
-
.style('font-size', d => d.cls === 'base' ? '
|
| 581 |
.style('font-weight', d => d.cls === 'base' ? 'bold' : 'normal')
|
| 582 |
.text(d => d.id);
|
| 583 |
|
|
|
|
| 577 |
node.append('text')
|
| 578 |
.attr('class','node-label')
|
| 579 |
.attr('dy','-2.4em')
|
| 580 |
+
.style('font-size', d => d.cls === 'base' ? '32px' : '28px')
|
| 581 |
.style('font-weight', d => d.cls === 'base' ? 'bold' : 'normal')
|
| 582 |
.text(d => d.id);
|
| 583 |
|