fix greet screen not displayed bug
This commit is contained in:
parent
9af7dd645f
commit
e9c65b19c4
|
@ -1,16 +1,18 @@
|
|||
<script lang="ts">
|
||||
|
||||
import autoAnimate from '@formkit/auto-animate';
|
||||
|
||||
import Matrix from '../../shared/matrix.svelte';
|
||||
import Blek from '../../shared/blek.svelte';
|
||||
import style from './style.module.scss';
|
||||
import Link from '../../shared/Link.svelte';
|
||||
import { onMount } from 'svelte';
|
||||
|
||||
let header_opacity = 0;
|
||||
|
||||
onMount(() => {
|
||||
setTimeout(() => {
|
||||
header_opacity = 1
|
||||
}, 1500);
|
||||
})
|
||||
</script>
|
||||
|
||||
<div class={style.root}>
|
||||
|
|
Loading…
Reference in New Issue