diff --git a/src/pages/Tetris.tsx b/src/pages/Tetris.tsx index c60a7d9..972ec3e 100644 --- a/src/pages/Tetris.tsx +++ b/src/pages/Tetris.tsx @@ -679,16 +679,18 @@ const Tetris = () => { {/* P1 Next Piece */} -
-

P1 NEXT

-
- {player1.nextPiece.shape.map((row, y) => ( -
- {row.map((val, x) => ( -
- ))} -
- ))} +
+

Next

+
+
+ {player1.nextPiece.shape.map((row, y) => ( +
+ {row.map((val, x) => ( +
+ ))} +
+ ))} +
@@ -726,16 +728,18 @@ const Tetris = () => {
{/* P2 Next Piece */} -
-

P2 NEXT

-
- {player2.nextPiece.shape.map((row, y) => ( -
- {row.map((val, x) => ( -
- ))} -
- ))} +
+

Next

+
+
+ {player2.nextPiece.shape.map((row, y) => ( +
+ {row.map((val, x) => ( +
+ ))} +
+ ))} +