Files
librodrome/app/layouts/default.vue
2026-02-20 12:55:10 +01:00

16 lines
284 B
Vue

<template>
<div class="app-layout grid grid-cols-1 min-h-dvh">
<LayoutTheHeader />
<main class="pb-[var(--player-height)]">
<slot />
</main>
<LayoutTheFooter />
</div>
</template>
<style scoped>
.app-layout {
grid-template-rows: auto 1fr auto;
}
</style>