Reduce canvas size back

This commit is contained in:
Florine W. Dekker 2022-11-26 18:01:01 +01:00
parent 6e2a5ba747
commit 97d1536adb
Signed by: FWDekker
GPG Key ID: D3DCFAA8A4560BE0
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "minesweeper",
"version": "0.85.1",
"version": "0.85.2",
"description": "Just Minesweeper!",
"author": "Florine W. Dekker",
"browser": "dist/bundle.js",

View File

@ -13,7 +13,7 @@ export class Display {
private readonly hintColor: string = "rgba(0, 0, 255, 0.3)";
private readonly safeColor: string = "rgba(0, 255, 0, 0.5)";
private readonly scale: number = 60;
private readonly scale: number = 30;
private readonly canvas: HTMLCanvasElement;
private readonly preferences: Preferences;