fix greet screen not displayed bug

This commit is contained in:
b1ek 2023-08-26 12:51:18 +10:00
parent 9af7dd645f
commit e9c65b19c4
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 7 additions and 5 deletions

View File

@ -1,16 +1,18 @@
<script lang="ts"> <script lang="ts">
import autoAnimate from '@formkit/auto-animate';
import Matrix from '../../shared/matrix.svelte'; import Matrix from '../../shared/matrix.svelte';
import Blek from '../../shared/blek.svelte'; import Blek from '../../shared/blek.svelte';
import style from './style.module.scss'; import style from './style.module.scss';
import Link from '../../shared/Link.svelte'; import Link from '../../shared/Link.svelte';
import { onMount } from 'svelte';
let header_opacity = 0; let header_opacity = 0;
onMount(() => {
setTimeout(() => { setTimeout(() => {
header_opacity = 1 header_opacity = 1
}, 1500); }, 1500);
})
</script> </script>
<div class={style.root}> <div class={style.root}>