website/src/components/ButtonCollection.astro
2025-03-14 23:23:27 -04:00

11 lines
No EOL
163 B
Text

<style>
div {
display: grid;
grid-auto-flow: row;
row-gap: 5px;
}
</style>
<div class="button-collection">
<slot />
</div>