0
0
Fork 0

Adjust styling and markup to account for the past questions

This commit is contained in:
Oliver-Akins 2020-12-12 16:32:43 -07:00
parent ede4e64714
commit 4b5302d24c
2 changed files with 14 additions and 3 deletions

View file

@ -1,6 +1,9 @@
<template>
<div id="GameView" class="maximize">
<game-board />
<div class="game-board-container">
<past-questions />
<game-board />
</div>
<player-hand />
<team-reminder />
<discard-hand />
@ -9,6 +12,7 @@
<script>
import DiscardHand from "../components/DiscardHandButton";
import PastQuestions from '../components/PastQuestions';
import TeamReminder from "../components/TeamReminder";
import GameBoard from "../components/GameBoard";
import PlayerHand from "../components/Hand";
@ -16,6 +20,7 @@ import PlayerHand from "../components/Hand";
export default {
name: `InGame`,
components: {
"past-questions": PastQuestions,
"team-reminder": TeamReminder,
"discard-hand": DiscardHand,
"player-hand": PlayerHand,
@ -29,4 +34,11 @@ export default {
<style scoped>
@import "../css/theme.css";
@import "../css/style.css";
.game-board-container {
text-align: center;
position: relative;
margin: 15px auto;
width: 95%;
}
</style>