feat : play UI v1

This commit is contained in:
GuillaumeSD
2024-03-20 20:37:58 +01:00
parent f5bf7ecfdb
commit 33c6764a8f
4 changed files with 31 additions and 20 deletions

View File

@@ -35,17 +35,5 @@ export const useScreenSize = () => {
};
}, []);
const getBoardSize = () => {
const width = screenSize.width;
const height = screenSize.height;
// 1200 is the lg layout breakpoint
if (window?.innerWidth < 1200) {
return Math.min(width, height - 150);
}
return Math.min(width - 600, height * 0.95);
};
return { ...screenSize, boardSize: getBoardSize() };
return screenSize;
};