Skip to content

Commit

Permalink
Adjust flex aspect ratio to prevent 13 player grid issues
Browse files Browse the repository at this point in the history
  • Loading branch information
wyne committed May 5, 2024
1 parent bab6b9b commit aaf3b07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Boards/FlexboxBoard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const FlexboxBoard: React.FC<FlexboxBoardProps> = () => {

const playerCount = playerIds.length;

const desiredAspectRatio = 0.8;
const desiredAspectRatio = 1;

const layoutHandler = (e: LayoutChangeEvent) => {
const { width, height } = e.nativeEvent.layout;
Expand Down

0 comments on commit aaf3b07

Please sign in to comment.