Files
Website/src/components/event/EventCard.svelte
Chaoscaot ddb19a85dc
All checks were successful
SteamWarCI Build successful
Update some Event View Code
2025-11-22 21:49:51 +01:00

23 lines
544 B
Svelte

<script lang="ts">
import type { Snippet } from "svelte";
const {
title,
children,
unsized = false,
}: {
title: string;
children: Snippet;
unsized?: boolean;
} = $props();
</script>
<div class="flex flex-col gap-1 {unsized ? '' : 'w-72 m-4'}">
<div class="bg-gray-100 text-black font-bold px-2 rounded uppercase">
{title}
</div>
<div class="border border-gray-600 rounded p-2 flex flex-col gap-2 bg-slate-900">
{@render children()}
</div>
</div>