initial version of streba 2

This commit is contained in:
Vincent van der Wal
2026-07-22 09:24:18 +02:00
commit 196f30521c
31 changed files with 5056 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
<script lang="ts">
let { label, value, detail = '' }: { label: string; value: string; detail?: string } = $props();
</script>
<div class="tile card">
<div class="label">{label}</div>
<div class="value">{value}</div>
{#if detail}<div class="detail">{detail}</div>{/if}
</div>
<style>
.tile {
padding: 1rem 1.15rem;
}
.label {
font-size: 0.8rem;
font-weight: 500;
color: var(--text-secondary);
}
.value {
font-size: 1.55rem;
font-weight: 600;
letter-spacing: -0.02em;
margin-top: 0.15rem;
}
.detail {
font-size: 0.8rem;
color: var(--text-muted);
margin-top: 0.15rem;
}
</style>