0
0
Fork 0

Move past-questions from the InGame to the GameBoard

This commit is contained in:
Oliver-Akins 2020-12-12 18:03:04 -07:00
parent 1a7875f233
commit 6735a5e860
2 changed files with 40 additions and 16 deletions

View file

@ -1,9 +1,6 @@
<template>
<div id="GameView" class="maximize">
<div class="game-board-container">
<past-questions />
<game-board />
</div>
<game-board />
<player-hand />
<team-reminder />
<discard-hand />
@ -12,7 +9,6 @@
<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";
@ -20,7 +16,6 @@ import PlayerHand from "../components/Hand";
export default {
name: `InGame`,
components: {
"past-questions": PastQuestions,
"team-reminder": TeamReminder,
"discard-hand": DiscardHand,
"player-hand": PlayerHand,
@ -34,11 +29,4 @@ 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>