15 lines
453 B
Vue
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>
|