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

12 lines
323 B
Vue

<template>
<div
class="absolute bottom-0 z-10 w-screen max-w-xs rounded-lg bg-white lg:left-1/2 lg:ml-0 lg:-translate-x-1/2"
>
<div
class="flex flex-1 flex-row items-center justify-center space-x-2 py-4 px-4 shadow-lg ring-1 ring-black ring-opacity-5"
>
<slot />
</div>
</div>
</template>