From 08750972da3b6586f45f27fe6d4178fd0a8c42fe Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 18 Oct 2024 16:38:05 +0530 Subject: [PATCH] feat: set width 900, height 500 --- src/constants/const.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants/const.ts b/src/constants/const.ts index 7337da31..55b19695 100644 --- a/src/constants/const.ts +++ b/src/constants/const.ts @@ -1,5 +1,5 @@ -export const VIEWPORT_W = 1280; -export const VIEWPORT_H = 720; +export const VIEWPORT_W = 900; +export const VIEWPORT_H = 500; export const ONE_PERCENT_OF_VIEWPORT_W = VIEWPORT_W / 100; export const ONE_PERCENT_OF_VIEWPORT_H = VIEWPORT_H / 100;