Molbap HF Staff commited on
Commit
69e2272
·
1 Parent(s): aa6453c

double fonts

Browse files
Files changed (1) hide show
  1. modular_graph_and_candidates.py +1 -1
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' ? '16px' : '14px')
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