feat(ui): improve sidebar layering, visual hierarchy, and graph depth [issue #23]

This commit is contained in:
2026-05-09 08:42:29 +02:00
parent bd5d0fb5c4
commit c77ff6f347
5 changed files with 40 additions and 15 deletions
@@ -21,7 +21,8 @@ export function mount(containerId, data, dotNetHelper) {
svgElement = d3.select(container).append("svg")
.attr("viewBox", [0, 0, width, height])
.attr("width", "100%")
.attr("height", "100%");
.attr("height", "100%")
.style("background", "radial-gradient(circle, #1a1a1a 0%, #121212 100%)");
// Radial gradient for Nebula effect
const defs = svgElement.append("defs");