Skip to content

Commit

Permalink
Merge branch 'alpha' of github.com:Muhammed-Rahif/Notpad into alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammed-Rahif committed Nov 17, 2024
2 parents aa71537 + 3449795 commit 73c4df6
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/lib/components/Loading.svelte
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<script lang="ts">
import { mode } from 'mode-watcher';
import { fade } from 'svelte/transition';
import appIconLight from '@/src/assets/images/Notpad Logo Light.svg';
import appIconDark from '@/src/assets/images/Notpad Logo Dark.svg';
</script>

<div
transition:fade
class="fixed inset-0 bottom-0 left-0 right-0 top-0 z-50 flex
flex-col items-center justify-center bg-primary-foreground"
>
<img class="w-20 animate-pulse" alt="icon" src={$mode == 'dark' ? appIconDark : appIconLight} />
</div>
<script lang="ts">
import { mode } from 'mode-watcher';
import { fade } from 'svelte/transition';
import appIconLight from '@/src/assets/images/Notpad Logo Light.svg';
import appIconDark from '@/src/assets/images/Notpad Logo Dark.svg';
</script>

<div
transition:fade
class="fixed inset-0 bottom-0 left-0 right-0 top-0 z-50 flex
flex-col items-center justify-center bg-primary-foreground"
>
<img class="w-20 animate-pulse" alt="icon" src={$mode == 'dark' ? appIconDark : appIconLight} />
</div>

0 comments on commit 73c4df6

Please sign in to comment.