We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb673be commit 4aa370eCopy full SHA for 4aa370e
frontend/src/lib/components/SplashLoading/SplashLoading.svelte
@@ -0,0 +1,17 @@
1
+<script lang="ts">
2
+ import { Progress } from 'stwui';
3
+</script>
4
+
5
+<section class="flex h-screen flex-col items-center justify-center">
6
+ <h1 class="m-2 text-2xl">{'Unity Auth'}</h1>
7
+ <p class="m-2 text-base font-normal">{'Loading...'}</p>
8
+ <div class="m-2 w-52 max-w-52">
9
+ <Progress value={0} indeterminate size="md" />
10
+ </div>
11
+</section>
12
13
+<style>
14
+ section {
15
+ background-color: hsl(var(--background));
16
+ }
17
+</style>
0 commit comments