change countdown size on smaller screens
All checks were successful
delpoy / build-and-deploy (push) Successful in 28s

This commit is contained in:
2023-08-10 17:06:38 +02:00
parent 793c43adc0
commit d0ff946d98
2 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
<script lang="ts">
import { env } from '$env/dynamic/public';
import Timer from '$lib/components/Countdown/Countdown.svelte';
import Countdown from '$lib/components/Countdown/Countdown.svelte';
</script>
<svelte:head>
@ -8,5 +8,5 @@
</svelte:head>
<div class="w-full flex justify-center items-center">
<Timer end={Date.parse(env.PUBLIC_START_DATE)} />
<Countdown end={Date.parse(env.PUBLIC_START_DATE)} />
</div>