thp-lang.org/src/components/TwoColumn.astro

9 lines
154 B
Plaintext
Raw Normal View History

2024-09-28 12:21:56 +00:00
---
const {cols} = Astro.props;
const grid_cols = cols ?? "grid-cols-[10rem_auto]";
---
<div class={`two-column grid ${grid_cols}`}>
2024-05-29 02:12:04 +00:00
<slot />
</div>