Add the player hand to the movement view

This commit is contained in:
Oliver Akins 2022-07-25 21:38:23 -06:00
parent a36d85ae74
commit bd70c2caac
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99

View file

@ -1,4 +1,5 @@
<script lang="ts"> <script lang="ts">
import PlayerHand from "../components/PlayerHand.svelte";
import Board from "../components/Board.svelte"; import Board from "../components/Board.svelte";
</script> </script>
@ -7,6 +8,9 @@ import Board from "../components/Board.svelte";
<div id="main-board"> <div id="main-board">
<Board /> <Board />
</div> </div>
<div id="player-hand">
<PlayerHand />
</div>
</main> </main>
@ -23,4 +27,9 @@ main {
grid-column: 2 / 3; grid-column: 2 / 3;
grid-row: 2 / 3; grid-row: 2 / 3;
} }
#player-hand {
grid-column: 2 / 3;
grid-row: 4 / 5;
}
</style> </style>