Files
leim-tools/app/layouts/default.vue
2025-08-15 15:37:35 +02:00

14 lines
286 B
Vue

<template>
<div
class="h-full grid md:grid-cols-[auto_1fr] bg-background transition-colors after:absolute after:transition-colors"
>
<Sidebar />
<div
class="wrapper max-h-screen transition-all overflow-y-auto"
>
<slot />
</div>
</div>
</template>