chore: grid line width

This commit is contained in:
Marcin Czerniak 2021-03-15 18:42:31 +01:00
parent 3e769ba1ab
commit 621bad76fc

View File

@ -30,7 +30,7 @@ const Grid = function(canvas) {
this.neonRect = (x, y, w, h) => { this.neonRect = (x, y, w, h) => {
this.ctx.strokeStyle= "#fff"; this.ctx.strokeStyle= "#fff";
this.ctx.lineWidth = 15; this.ctx.lineWidth = 7;
this.ctx.strokeRect(x, y, w, h); this.ctx.strokeRect(x, y, w, h);
} }