made the time display work in idle screen!

This commit is contained in:
RezHackXYZ 2025-05-26 21:17:47 +05:30
parent 08ef5545cf
commit 959f2441ae
No known key found for this signature in database
12 changed files with 138 additions and 438 deletions

View file

@ -0,0 +1,9 @@
<script>
let props = $props();
</script>
{#if props.size == "small"}
<h1 class="m-0 leading-[75px] text-[75px] text-gray-500">{props.digit}</h1>
{:else if props.size == "large"}
<h1 class="m-0 leading-[200px] text-[200px]">{props.digit}</h1>
{/if}