diff options
Diffstat (limited to 'src/pages/game.tsx')
-rw-r--r-- | src/pages/game.tsx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/pages/game.tsx b/src/pages/game.tsx index f3feb89..18007cb 100644 --- a/src/pages/game.tsx +++ b/src/pages/game.tsx @@ -6,6 +6,7 @@ import { VoerBord } from '../components/voerBord'; import { DialogBox } from '../components/dialogBox'; import { CurrentGameSettings } from '../components/gameSettings'; import { Button, SearchBar } from '../components/ui'; +import { GameBar } from '../components/gameBar'; import WifiTetheringRoundedIcon from '@material-ui/icons/WifiTetheringRounded'; import LinkRoundedIcon from '@material-ui/icons/LinkRounded'; @@ -40,8 +41,15 @@ export default function GamePage() { return ( <div> <NavBar/> - <CenteredPage width={900}> - <VoerBord width={7} height={6}/> + <CenteredPage width={900} style={{ height: "100vh" }}> + <div style={{ + position: "relative", + top: "50%", + transform: "translateY(-50%)" + }}> + <VoerBord width={7} height={6}/> + <GameBar/> + </div> <DialogBox title="Nieuw spel"> <CurrentGameSettings/> <div style={{ |