This commit is contained in:
Robert Bendun 2021-03-15 18:45:01 +01:00
parent 3e769ba1ab
commit 6a1cb19936

View File

@ -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);
}