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">
<tr>
<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">Gamemaster(s)</th>
</tr>

View File

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

View File

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