homemanager-fe/src/components/house-planner/PlannerSidebars.vue

10 lines
217 B
Vue

<template>
<div
class="z-8 pointer-events-none absolute right-0 top-0 bottom-0 my-4 overflow-hidden"
>
<div class="flex h-full flex-col items-end space-y-2">
<slot />
</div>
</div>
</template>