mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 20:15:27 +00:00
16 lines
353 B
Plaintext
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>
|