css: admin page: wrap tiles

This commit is contained in:
Settel 2022-03-17 10:15:58 +01:00
parent a1c02e4ae8
commit 3d41d3392d
3 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<table class="admin-tile-games__table"> <table class="admin-tile-games__table">
<tr> <tr>
<th class="admin-tile-games__table-head">Game name</th> <th class="admin-tile-games__table-head">Game name</th>
<th class="admin-tile-games__table-head">State</th> <th class="admin-tile-games__table-head">Status</th>
<th class="admin-tile-games__table-head">#&nbsp;players</th> <th class="admin-tile-games__table-head">#&nbsp;players</th>
<th class="admin-tile-games__table-head">Gamemaster(s)</th> <th class="admin-tile-games__table-head">Gamemaster(s)</th>
</tr> </tr>

View File

@ -29,7 +29,7 @@ export default {
}, },
games() { games() {
return this.$store.state.engine.games || {} return this.$store.state.engine.games || {}
} },
}, },
} }
</script> </script>
@ -48,6 +48,7 @@ export default {
&__tiles { &__tiles {
display: flex; display: flex;
flex-wrap: wrap;
padding: 24px; padding: 24px;
} }
} }

View File

@ -72,6 +72,7 @@ export default {
&__tiles { &__tiles {
display: flex; display: flex;
flex-wrap: wrap;
padding: 24px; padding: 24px;
} }