feat: set height to 0.72 of browser size

This commit is contained in:
Rohit
2025-03-17 16:24:42 +05:30
parent 3fafeefdc3
commit 0487bf00b9
4 changed files with 7 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ export class CoordinateMapper {
constructor(
canvasWidth: number = window.innerWidth * 0.7,
canvasHeight: number = window.innerHeight * 0.64,
canvasHeight: number = window.innerHeight * 0.72,
browserWidth: number = BROWSER_DEFAULT_WIDTH,
browserHeight: number = BROWSER_DEFAULT_HEIGHT
) {