diff --git a/frontend/src/components/dashboard/TeamNetwork.vue b/frontend/src/components/dashboard/TeamNetwork.vue index 5806fef..1cb4e3e 100644 --- a/frontend/src/components/dashboard/TeamNetwork.vue +++ b/frontend/src/components/dashboard/TeamNetwork.vue @@ -118,7 +118,7 @@ const connectionPaths = computed>(() => { // Spread start points across Iris bottom edge (30%-70% range) const t = total > 1 ? idx / (total - 1) : 0.5 - const startX = iris.left + iris.width * (0.30 + t * 0.40) + const startX = iris.left + iris.width * (0.38 + t * 0.24) const startY = iris.bottom - 1 // Determine column: left or right of Iris center @@ -130,8 +130,8 @@ const connectionPaths = computed>(() => { // Bézier control points const cp1x = startX - const cp1y = startY + 40 - const cp2x = endX + (isLeftColumn ? 50 : -50) + const cp1y = startY + 70 + const cp2x = endX + (isLeftColumn ? 35 : -35) const cp2y = endY - 10 const d = `M ${startX} ${startY} C ${cp1x} ${cp1y}, ${cp2x} ${cp2y}, ${endX} ${endY}` @@ -445,7 +445,7 @@ onUnmounted(() => { display: flex; flex-direction: column; align-items: center; - gap: 32px; + gap: 64px; } .hero-slot {