pedi3/resources/js/Components/AuthenticationCard.vue

12 lines
339 B
Vue
Raw Normal View History

2024-02-24 20:41:30 -03:00
<template>
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100">
<div>
<slot name="logo" />
</div>
<div class="w-full sm:max-w-md mt-6 px-6 py-4 bg-white shadow-md overflow-hidden sm:rounded-lg">
<slot />
</div>
</div>
</template>