Files
SAFEKISO/safekiso_admin/base/layouts/TopNavbarAndFooterWithUpperCushion.vue
2026-04-07 14:50:23 +09:00

18 lines
488 B
Vue

<template>
<div class="flex flex-col min-h-screen">
<TopNavBar1 class="mb-3" />
<!-- It is cushion -->
<div class="flex-grow justify-center"></div>
<slot class="bg-gray-50 mt-5 sm:px-3 lg:px-5" />
<!-- It is cushion -->
<div class="flex-grow justify-center"></div>
<BaseModal1 />
<Footer1 class="mt-3" />
</div>
</template>
<script setup lang="ts">
import TopNavBar1 from '../components/TopNavBar1.vue';
</script>