From 2a027ba552b64af091d536d255d91475c6e1b37f Mon Sep 17 00:00:00 2001 From: Michael Winter Date: Mon, 30 Mar 2026 22:17:01 +0200 Subject: [PATCH] Add prev/current/next graph panels to Path Navigator --- webapp/path_navigator.html | 206 ++++++++++++++++++++++--------------- 1 file changed, 123 insertions(+), 83 deletions(-) diff --git a/webapp/path_navigator.html b/webapp/path_navigator.html index 4a6ac39..d2dc2c9 100644 --- a/webapp/path_navigator.html +++ b/webapp/path_navigator.html @@ -56,12 +56,25 @@ font-weight: bold; } - #graph-container { - width: 100%; - height: 500px; + #graphs-container { + display: flex; + justify-content: space-between; + gap: 10px; + } + + .graph-panel { + flex: 1; + height: 400px; border: 1px solid #0f3460; border-radius: 8px; background: #16213e; + position: relative; + overflow: hidden; + } + + .graph-panel svg { + width: 100%; + height: 100%; } .chord-info { @@ -162,7 +175,11 @@ -
+
+
+
+
+