style : minor tweaks

This commit is contained in:
GuillaumeSD
2024-02-26 23:41:18 +01:00
parent d5d1363da1
commit b2b80b1cc1
2 changed files with 18 additions and 12 deletions

View File

@@ -44,7 +44,7 @@ export const useScreenSize = () => {
return Math.min(width, height - 150);
}
return Math.min(width - 600, height);
return Math.min(width - 600, height * 0.95);
};
return { ...screenSize, boardSize: getBoardSize() };