Christmas cookie ranking site
at main 16 lines 311 B view raw
1<script lang="ts"> 2 import type { Snippet } from "svelte"; 3 4 const { children }: { children: Snippet } = $props(); 5</script> 6 7<div class="error">{@render children()}</div> 8 9<style> 10 .error { 11 text-transform: uppercase; 12 font-size: 0.75rem; 13 font-weight: 500; 14 color: rgb(227 25 25); 15 } 16</style>