Change: UI to display correctly on mobile #162

This commit is contained in:
advplyr 2021-11-04 17:35:59 -05:00
parent b0ea2f8008
commit b827667a72
30 changed files with 239 additions and 102 deletions

View file

@ -1,5 +1,5 @@
<template>
<div class="w-full h-full p-8">
<div id="page-wrapper" class="page p-6 overflow-y-auto relative" :class="streamAudiobook ? 'streaming' : ''">
<div class="w-full max-w-xl mx-auto">
<h1 class="text-2xl">Account</h1>
@ -46,6 +46,9 @@ export default {
}
},
computed: {
streamAudiobook() {
return this.$store.state.streamAudiobook
},
user() {
return this.$store.state.user.user || null
},