mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
14 lines
376 B
Vue
14 lines
376 B
Vue
<template>
|
|
<div
|
|
class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-card-background">
|
|
<div>
|
|
<slot name="logo" />
|
|
</div>
|
|
|
|
<div
|
|
class="w-full sm:max-w-md mt-6 px-6 py-4 bg-card-background shadow-md overflow-hidden sm:rounded-lg">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</template>
|