Files
website-astro-stefanimhoff.de/src/components/Bookshelf.astro
2024-09-11 17:02:01 +02:00

16 lines
353 B
Plaintext

---
// Cspell:words astro minmax classnames
export interface Props {
[key: string]: any;
}
const { ...props } = Astro.props;
---
<article
class="grid grid-cols-[repeat(auto-fit,_minmax(150px,_1fr))] place-items-center justify-center gap-[20px] rounded-4 bg-white/50 p-10 mbe-13 mbs-0 mie-0 mis-0 dark:bg-black/80"
{...props}
>
<slot />
</article>