Replace paginated-only reading with a toggle between paginated (CSS columns) and continuous vertical scroll modes. Replace the full-width fixed footer player bar with a compact floating pill in the bottom-right corner, expandable to show full controls, visualizer, and playlist. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
250 B
Vue
16 lines
250 B
Vue
<template>
|
|
<div class="app-layout grid grid-cols-1 min-h-dvh">
|
|
<LayoutTheHeader />
|
|
<main>
|
|
<slot />
|
|
</main>
|
|
<LayoutTheFooter />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.app-layout {
|
|
grid-template-rows: auto 1fr auto;
|
|
}
|
|
</style>
|