laravel-vue-file-share/resources/js/Layouts/GuestLayout.vue
2023-10-08 14:20:03 -07:00

15 lines
453 B
Vue

<script setup></script>
<template>
<div class="h-screen w-full bg-zinc-900 text-gray-100 flex gap-4">
<main
class="flex flex-col flex-1 px-4 overflow-hidden items-center justify-center"
>
<div
class="w-full sm:max-w-md mt-6 px-6 py-4 border-sky-600 border rounded overflow-hidden sm:rounded-lg"
>
<slot />
</div>
</main>
</div>
</template>