Files
webcompile/src/lib/Card/CardOuter.svelte
2022-08-08 08:20:03 +03:00

13 lines
149 B
Svelte

<div class="card-outer">
<slot />
</div>
<style>
div {
display: flex;
flex-direction: column;
gap: 2rem;
flex-flow: row wrap;
}
</style>