Fix column width in chord panel tables

This commit is contained in:
Michael Winter 2026-04-01 09:18:39 +02:00
parent e0bacce10a
commit 2b7c882bc9

View file

@ -631,6 +631,7 @@
th.style.fontWeight = "normal";
th.style.color = "#666";
th.style.whiteSpace = "nowrap";
th.style.width = "28px";
headerRow.appendChild(th);
});
table.appendChild(headerRow);
@ -647,6 +648,7 @@
td.style.textAlign = "right";
td.style.color = "#888";
td.style.whiteSpace = "nowrap";
td.style.width = "28px";
if (j === 0) {
td.style.textAlign = "left";
}