From c49270fab00f54120f17a3e2c0437bce01da5f4c Mon Sep 17 00:00:00 2001 From: MrBlake Date: Tue, 28 Jul 2026 15:06:14 +0200 Subject: [PATCH] x --- .../templates/netbox_topology_views/rack_elevation.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox_topology_views/templates/netbox_topology_views/rack_elevation.html b/netbox_topology_views/templates/netbox_topology_views/rack_elevation.html index 96121bf..57cc69f 100644 --- a/netbox_topology_views/templates/netbox_topology_views/rack_elevation.html +++ b/netbox_topology_views/templates/netbox_topology_views/rack_elevation.html @@ -210,8 +210,8 @@ nodeContainer.className = 'rack-topology-device-list'; nodeContainer.style.display = 'flex'; nodeContainer.style.flexDirection = 'column'; - nodeContainer.style.gap = '40px'; - nodeContainer.style.rowGap = '40px'; + nodeContainer.style.gap = '20px'; + nodeContainer.style.rowGap = '20px'; column.appendChild(nodeContainer); group.nodes.sort((a, b) => (b.position || 0) - (a.position || 0)).forEach(node => { const item = document.createElement(node.url ? 'a' : 'div');