36 lines
556 B
Text
36 lines
556 B
Text
---
|
|
export interface Props {
|
|
title: string;
|
|
body: string;
|
|
href: string;
|
|
}
|
|
|
|
const { href, title, body } = Astro.props;
|
|
---
|
|
|
|
<div class="card">
|
|
<div class="title">
|
|
<slot name="title" />
|
|
</div>
|
|
|
|
<div class="content">
|
|
<slot />
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<slot name="footer" />
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.card {
|
|
border: 1px solid var(--prj-accent-bg);
|
|
border-radius: 8px;
|
|
|
|
padding: var(--prj-spacing-2) var(--prj-spacing-3);
|
|
}
|
|
|
|
.title > :global(:last-child) {
|
|
margin-bottom: var(--prj-spacing-2);
|
|
}
|
|
</style>
|