Feat : better discard

Closes #27
This commit is contained in:
2024-05-14 20:17:30 +02:00
parent 583c5f56b6
commit 2cec8bf54c
2 changed files with 36 additions and 25 deletions
+3 -2
View File
@@ -17,8 +17,7 @@ const discard_unwrapped = ref<boolean>(false)
</PlayerListElement>
</div>
<div id="current_player">
<input type="checkbox" v-model="discard_unwrapped">
<PlayerSlot v-for="p in current_players" :player="p" :discard_unwrapped="discard_unwrapped"></PlayerSlot>
<PlayerSlot v-for="p in current_players" :player="p"></PlayerSlot>
</div>
<SelfView></SelfView>
</div>
@@ -38,6 +37,8 @@ const discard_unwrapped = ref<boolean>(false)
#player_list,
#current_player {
overflow: auto;
position: relative;
isolation: isolate;
}
#market {