-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Problem: Not clear when user is logged in
- Loading branch information
1 parent
5ead6e8
commit 49b1944
Showing
2 changed files
with
20 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,18 @@ | ||
<script> | ||
import { Circle2 } from "svelte-loading-spinners"; | ||
import { Circle2 } from 'svelte-loading-spinners'; | ||
</script> | ||
<div class="flex flex-col items-center justify-center gap-4 py-20"> | ||
<div class="flex flex-row"> | ||
<div class="flex flex-col items-center justify-center gap-4 py-20"> | ||
<Circle2 size="30" unit="px" /><Circle2 size="60" unit="px" /><Circle2 | ||
size="90" | ||
unit="px" | ||
/> | ||
</div> | ||
<div class="flex flex-col items-center justify-center gap-4 py-20"> | ||
<Circle2 size="90" unit="px" /><Circle2 size="60" unit="px" /><Circle2 | ||
size="30" | ||
unit="px" | ||
/> | ||
</div> | ||
<div class="flex flex-col items-center justify-center gap-4 py-20"> | ||
<Circle2 size="30" unit="px" /><Circle2 size="60" unit="px" /><Circle2 | ||
size="90" | ||
unit="px" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="flex flex-col items-center justify-center gap-4 py-20 overflow-hidden"> | ||
<div class="flex flex-row"> | ||
<div class="flex flex-col items-center justify-center gap-4 py-20"> | ||
<Circle2 size="30" unit="px" /><Circle2 size="60" unit="px" /><Circle2 size="90" unit="px" /><Circle2 size="120" unit="px" /> | ||
</div> | ||
<div class="flex flex-col items-center justify-center gap-4 py-20"> | ||
<Circle2 size="120" unit="px" /><Circle2 size="90" unit="px" /><Circle2 size="60" unit="px" /><Circle2 size="30" unit="px" /> | ||
</div> | ||
<div class="flex flex-col items-center justify-center gap-4 py-20"> | ||
<Circle2 size="30" unit="px" /><Circle2 size="60" unit="px" /><Circle2 size="90" unit="px" /><Circle2 size="120" unit="px" /> | ||
</div> | ||
</div> | ||
<!-- <Circle2 size="800" unit="px" /> hodlbod's motto is "you can never have too many spinners", but I don't know about this last one, it might be too much--> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters