diff options
| author | Fuwn <[email protected]> | 2024-02-04 23:40:52 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-04 23:40:52 -0800 |
| commit | 572ae953f5ca300e075929a67929f5130c65b10d (patch) | |
| tree | 4423c3a599eadaa5cfa3a2522e3846bdfa0c2b5e /src/lib/Tools/SequelSpy.svelte | |
| parent | feat(message): use fullscreen popup (diff) | |
| download | due.moe-572ae953f5ca300e075929a67929f5130c65b10d.tar.xz due.moe-572ae953f5ca300e075929a67929f5130c65b10d.zip | |
feat(popup): use popup component
Diffstat (limited to 'src/lib/Tools/SequelSpy.svelte')
| -rw-r--r-- | src/lib/Tools/SequelSpy.svelte | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/Tools/SequelSpy.svelte b/src/lib/Tools/SequelSpy.svelte index ce6ea7e6..16e41f81 100644 --- a/src/lib/Tools/SequelSpy.svelte +++ b/src/lib/Tools/SequelSpy.svelte @@ -18,6 +18,7 @@ import HoverCover from '$lib/Media/Cover/HoverCover.svelte'; import Skeleton from '$lib/Loading/Skeleton.svelte'; import identity from '$stores/identity'; + import Popup from '$lib/Popup.svelte'; export let user: AniListAuthorisation; @@ -47,7 +48,9 @@ </script> {#if user === undefined || $identity.id === -2} - <div class="popup card">Please log in to view this page.</div> + <Popup fullscreen locked> + <div class="message">Please log in to view this page.</div> + </Popup> {:else} <div class="card"> <p> |