From 6a1cb19936b9f59bb3c79f87205ed47feff9fe2f Mon Sep 17 00:00:00 2001 From: Robert Bendun Date: Mon, 15 Mar 2021 18:45:01 +0100 Subject: [PATCH] 8 > 15 --- src/grid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grid.js b/src/grid.js index 97eb2e0..ccce498 100644 --- a/src/grid.js +++ b/src/grid.js @@ -30,7 +30,7 @@ const Grid = function(canvas) { this.neonRect = (x, y, w, h) => { this.ctx.strokeStyle= "#fff"; - this.ctx.lineWidth = 15; + this.ctx.lineWidth = 8; this.ctx.strokeRect(x, y, w, h); }