fix greet screen not displayed bug
This commit is contained in:
parent
9af7dd645f
commit
e9c65b19c4
|
@ -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}>
|
||||||
|
|
Loading…
Reference in New Issue