small fixes

This commit is contained in:
2019-10-01 16:18:30 +02:00
parent 34bb1977a5
commit 2e7afa9bb0
3 changed files with 31 additions and 7 deletions

View File

@@ -2,7 +2,7 @@
<PlayerView :id="state.player_id"
v-slot="{ player, loot, notifications, actions }">
<main id="app" class="container">
<header style="padding-bottom: 1.5em;">
<header >
<HeaderBar :app_state="state">
<template v-slot:title>{{ player.name }}</template>
<template v-slot:links>
@@ -103,7 +103,7 @@ export default {
components: {
PlayerView,
HeaderBar,
'AddingChest': Chest,
'AddingChest': Chest, // Alias to prevent component re-use
Chest,
Wealth
},
@@ -140,3 +140,8 @@ export default {
}
</script>
<style scoped>
header {
padding-bottom: 1.5em;
}
</style>