zmieniono szerokość na 15

This commit is contained in:
Robert Bendun 2021-03-15 18:42:36 +01:00
parent 3bd398f98b
commit 3e769ba1ab

View File

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