Files
nodarium/packages/ui/src/routes/Section.svelte
Max Richter b19da950a6 refactor: use tailwind custom colors for themes
Use tailwind v4 @theme block so we can use bg-layer-0 instead of
bg-[--layer-0] for theme colors.
2026-02-03 12:18:44 +01:00

20 lines
492 B
Svelte

<script lang="ts">
import { type Snippet } from 'svelte';
let { title, value, children, class: _class } = $props<{
title?: string;
value?: unknown;
children?: Snippet;
class?: string;
}>();
</script>
<section class="border-outline border-1/2 bg-layer-1 rounded border mb-4 p-4 flex flex-col gap-4 {_class}">
<h3 class="flex gap-2 font-bold">
{title}
<p class="font-normal! opacity-50!">{value}</p>
</h3>
<div>
{@render children()}
</div>
</section>