fix startup bootstrap recovery and local verification
This commit is contained in:
15
frontend/src/components/common/Card.vue
Normal file
15
frontend/src/components/common/Card.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<section
|
||||
class="rounded-xl border border-gray-200 bg-white shadow-sm dark:border-dark-700 dark:bg-dark-900"
|
||||
>
|
||||
<header v-if="$slots.header" class="border-b border-gray-100 dark:border-dark-700">
|
||||
<slot name="header" />
|
||||
</header>
|
||||
<div>
|
||||
<slot />
|
||||
</div>
|
||||
<footer v-if="$slots.footer" class="border-t border-gray-100 dark:border-dark-700">
|
||||
<slot name="footer" />
|
||||
</footer>
|
||||
</section>
|
||||
</template>
|
||||
Reference in New Issue
Block a user