From 4bc2dcc802042d2d5173bd2b4a031b290a1c33c6 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Thu, 7 Jan 2021 11:34:58 +0100 Subject: invite knopjes klaar --- src/pages/game.tsx | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/src/pages/game.tsx b/src/pages/game.tsx index 728fcdc..b17c12a 100644 --- a/src/pages/game.tsx +++ b/src/pages/game.tsx @@ -1,8 +1,39 @@ +import { CSSProperties } from 'react'; + import { NavBar } from '../components/navbar'; import { CenteredPage } from '../components/page'; import { VoerBord } from '../components/voerBord'; import { DialogBox } from '../components/dialogBox'; import { CurrentGameSettings } from '../components/gameSettings'; +import { Button } from '../components/ui'; + +import WifiTetheringRoundedIcon from '@material-ui/icons/WifiTetheringRounded'; +import LinkRoundedIcon from '@material-ui/icons/LinkRounded'; + +var InviteButtonStyle: CSSProperties = { + backgroundColor: "var(--text)", + height: 160, + padding: 12 +} + +var InviteButtonIconStyle: CSSProperties = { + fontSize: 100, + position: "absolute", + top: 12, + left: "50%", + transform: "translateX(-50%)" +} + +var InviteButtonLabelStyle: CSSProperties = { + position: "absolute", + bottom: 12, + left: "50%", + transform: "translateX(-50%)", + textAlign: "center", + color: "var(--background)", + width: 136, + fontSize: 20 +} export default function GamePage() { return ( @@ -12,6 +43,27 @@ export default function GamePage() { +
+ + +
-- cgit v1.2.3