summaryrefslogblamecommitdiffstatshomepage
path: root/frontend/src/lib/statistics/StatGroup.svelte
blob: e1b97daf7648c3408c5ae73dafc446dc9e0f884d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                                      
<script lang="ts">
	export let title;
</script>

<section
	class="flex flex-col gap-2 rounded bg-slate-900 p-2 font-medium shadow-md shadow-slate-950/30"
>
	<h2 class="text-2xl">{title}</h2>
	<div class="flex flex-row flex-wrap gap-10">
		<slot />
	</div>
</section>