This commit is contained in:
Robert Bendun 2021-03-15 18:48:40 +01:00
commit 42fca40fa5
1 changed files with 1 additions and 1 deletions

View File

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