From 621bad76fcfaaef35aad0dbeabd8d5e569e668bc Mon Sep 17 00:00:00 2001 From: Marcin Czerniak Date: Mon, 15 Mar 2021 18:42:31 +0100 Subject: [PATCH] chore: grid line width --- src/grid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grid.js b/src/grid.js index 97eb2e0..296a011 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 = 7; this.ctx.strokeRect(x, y, w, h); }