Add: New audio player w/ fullscreen and condensed views

This commit is contained in:
advplyr 2021-11-01 21:06:51 -05:00
parent 082c303caf
commit 08195af0dd
9 changed files with 1248 additions and 7 deletions

View file

@ -4,7 +4,8 @@
<div id="content" class="overflow-hidden" :class="playerIsOpen ? 'playerOpen' : ''">
<Nuxt />
</div>
<app-stream-container ref="streamContainer" />
<!-- <app-stream-container ref="streamContainer" /> -->
<app-audio-player-container ref="streamContainer" />
<modals-downloads-modal ref="downloadsModal" @deleteDownload="deleteDownload" />
<modals-libraries-modal />
<readers-reader />
@ -466,6 +467,6 @@ export default {
height: calc(100vh - 64px);
}
#content.playerOpen {
height: calc(100vh - 236px);
height: calc(100vh - 164px);
}
</style>