Revisione/app/layouts/default.vue

8 lines
245 B
Vue

<template>
<div style="display: flex; min-height: 100vh;">
<TheSidebar />
<main style="margin-left: var(--sidebar-w); flex: 1; min-height: 100vh; background: var(--bg); overflow: auto;">
<slot />
</main>
</div>
</template>