From 2c2ce55cb36f9c2d0c6ec0fe8c6ef247b4e53825 Mon Sep 17 00:00:00 2001 From: Adam Procter <adamprocter@researchnot.es> Date: Fri, 11 Dec 2020 18:56:22 +0000 Subject: [PATCH] increased connections width --- app/src/components/ConnectionsLayer.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/components/ConnectionsLayer.vue b/app/src/components/ConnectionsLayer.vue index 1533f67..f801d94 100644 --- a/app/src/components/ConnectionsLayer.vue +++ b/app/src/components/ConnectionsLayer.vue @@ -29,7 +29,7 @@ :y1="lines.y_pos_start + value.height / 4" :x2="lines.x_pos_end" :y2="lines.y_pos_end + value.height / 4" - style="stroke: rgb(255, 0, 0); stroke-width: 2" + style="stroke: rgb(255, 0, 0); stroke-width: 5" /> </g> </g> @@ -67,7 +67,7 @@ :y1="otherlines.y_pos_start + others.height / 4" :x2="otherlines.x_pos_end" :y2="otherlines.y_pos_end + others.height / 4" - style="stroke: rgb(255, 0, 0); stroke-width: 2" + style="stroke: rgb(255, 0, 0); stroke-width: 5" /> </g> </g> @@ -168,7 +168,7 @@ export default { ) newLine.setAttribute('stroke', 'red') - newLine.setAttribute('stroke-width', '2') + newLine.setAttribute('stroke-width', '5') newLine.setAttribute('x1', svgP.x) newLine.setAttribute('y1', svgP.y) newLine.setAttribute('x2', svgP.x) -- GitLab