diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-01-07 23:15:33 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-01-07 23:15:33 +0100 |
commit | cb3a0c38944c9eb61bc3e7dc02ca28fc6922993f (patch) | |
tree | fe6568d4cd65812c3327f343459fec13c875dec2 /src/pages/game.tsx | |
parent | 95aed715672265fdb3f4e31d478fb426e28052ab (diff) |
balk :tada:
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={{ |