Add basic deck builder #12

Merged
hamcha merged 42 commits from feature/deckbuilder into master 2019-09-12 09:11:32 +00:00
1 changed files with 7 additions and 3 deletions
Showing only changes of commit f7e0403619 - Show all commits

View File

@ -3,8 +3,12 @@
<section class="playerlist">
<b>Players</b>
</section>
<section class="pool"><b>Card pool</b></section>
<section class="cardlist"><b>Cards</b></section>
<section class="pool">
<b>Card pool</b>
</section>
<section class="cardlist">
<b>Cards</b>
</section>
</section>
</template>
@ -13,7 +17,7 @@
display: grid;
height: 100vh;
grid-gap: 10px;
grid-template-columns: 200px 1fr 250px;
grid-template-columns: minmax(200px, 1fr) 3fr minmax(250px, 1fr);
section {
grid-row: 1;
border: 1px solid #555;