Add the player hand to the movement view
This commit is contained in:
parent
a36d85ae74
commit
bd70c2caac
1 changed files with 9 additions and 0 deletions
|
|
@ -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>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue