From 6a7ed4c452977a97d9dbb436d41b2cde5dcb86fe Mon Sep 17 00:00:00 2001 From: Matthew Reichhoff Date: Mon, 13 Jan 2025 20:51:16 -0500 Subject: [PATCH] Increase graph node font size This matches the component breakdown style, which is more legible on small screens. --- public/js/modules/graph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/modules/graph.js b/public/js/modules/graph.js index d7b6336..fc43882 100644 --- a/public/js/modules/graph.js +++ b/public/js/modules/graph.js @@ -207,7 +207,7 @@ function getStylesheet() { 'background-color': (isTones) ? toneColor : levelColor, 'label': isTree ? 'data(word)' : 'data(id)', 'color': isTones ? makeLegible : 'black', - 'font-size': isTree ? '20px' : '18px', + 'font-size': '20px', 'text-valign': 'center', 'text-halign': 'center' }