webcompile/src/lib/Card/CardOuter.svelte
2022-08-27 19:37:37 +03:00

13 lines
142 B
Svelte

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