Implemented item view

This commit is contained in:
2020-11-26 19:48:43 +01:00
parent 6a63392b09
commit 60f026b6d9
8 changed files with 103 additions and 29 deletions

View File

@@ -9,6 +9,11 @@
<div id="footer">
<footer-nav/>
<div id="player-spacer" v-if="$store.state.playerActive"></div>
</div>
<div id="player-holder" v-if="$store.state.playerActive">
asdasdasdasdasd
</div>
</div>
@@ -92,4 +97,16 @@ export default {
#loading-screen {
margin: 45vh auto 0 auto;
}
#player-holder {
position: fixed;
left: 0;
right: 0;
bottom: 0;
height: 60px;
}
#player-spacer {
height: 60px;
}
</style>