aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-01-07 15:40:11 +0100
committerlonkaars <l.leblansch@gmail.com>2021-01-07 15:40:11 +0100
commit5971b69a2990390529a6f8076331e3d7d10c9325 (patch)
tree875e0db4d22fc64dc86291517f10c3b58a073c01 /src/pages
parent4bc2dcc802042d2d5173bd2b4a031b290a1c33c6 (diff)
soortvan zoekbalk
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/game.tsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pages/game.tsx b/src/pages/game.tsx
index b17c12a..1725d09 100644
--- a/src/pages/game.tsx
+++ b/src/pages/game.tsx
@@ -5,13 +5,13 @@ 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 { Button, SearchBar } from '../components/ui';
import WifiTetheringRoundedIcon from '@material-ui/icons/WifiTetheringRounded';
import LinkRoundedIcon from '@material-ui/icons/LinkRounded';
var InviteButtonStyle: CSSProperties = {
- backgroundColor: "var(--text)",
+ backgroundColor: "var(--page-background)",
height: 160,
padding: 12
}
@@ -30,7 +30,7 @@ var InviteButtonLabelStyle: CSSProperties = {
left: "50%",
transform: "translateX(-50%)",
textAlign: "center",
- color: "var(--background)",
+ color: "var(--text-alt)",
width: 136,
fontSize: 20
}
@@ -64,6 +64,7 @@ export default function GamePage() {
<h2 style={InviteButtonLabelStyle}>Uitnodigen via link</h2>
</Button>
</div>
+ <SearchBar label="Zoeken in vriendenlijst"/>
</DialogBox>
</CenteredPage>
</div>