Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
SVG export increased stroke-width (to match graph)
  • Loading branch information
proost committed Jan 16, 2018
1 parent 9a03db1 commit a6920a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conekt/static/js/planet_svg.js
Expand Up @@ -114,7 +114,7 @@ function writeSVG(data) {
text = node.data('name');
if (node.data('best_name') !== '') { text = node.data('best_name'); }

group.text({y:6, fill:"none", stroke:'#ffffff'}).content(text)
group.text({y:6, fill:"none", stroke:'#ffffff', stroke-width:"2"}).content(text)
.attr('text-anchor', 'middle')
.attr('font-family', 'sans-serif');
group.text({y:6, fill:"black"}).content(text)
Expand Down

0 comments on commit a6920a1

Please sign in to comment.