This repository has been archived on 2024-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
tailwindui/vue/components/application-ui/layout/panels/card_with_gray_footer.vue
2024-01-24 19:02:44 +08:00

12 lines
367 B
Vue

<template>
<div class="overflow-hidden rounded-lg bg-white shadow">
<div class="px-4 py-5 sm:p-6">
<!-- Content goes here -->
</div>
<div class="bg-gray-50 px-4 py-4 sm:px-6">
<!-- Content goes here -->
<!-- We use less vertical padding on card footers at all sizes than on headers or body sections -->
</div>
</div>
</template>