Skip to content

Commit

Permalink
Removed redundancy in display
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloGOP committed Apr 28, 2024
1 parent 0b3eb65 commit 8f58ee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/pages/games/MultiplayerRoom.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const MultiplayerRoom = () => {
}

return (
<Box sx={{display: 'flex', flexDirection: { md: 'column', lg: 'row', xs: "column" }, justifyContent: 'center', flex: 1, alignItems: 'center', padding: '2em 0', gap: '4em' }}>
<Box sx={{display: 'flex', flexDirection: { xs: "column", lg: 'row' }, justifyContent: 'center', flex: 1, alignItems: 'center', padding: '2em 0', gap: '4em' }}>
{roomCode && error === "" && (
<Container></Container>
)}
Expand Down

0 comments on commit 8f58ee3

Please sign in to comment.