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

12 lines
323 B
Vue
Raw Normal View History

2023-01-16 19:37:39 +00:00
<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>