diff options
| author | Fuwn <[email protected]> | 2024-01-04 09:18:38 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-04 09:18:42 -0800 |
| commit | 2799da6cbbc63a8c146c84e04922869a40687ef7 (patch) | |
| tree | ba2c8a631c5af1fe786763e80287f9bb67171604 /src/lib | |
| parent | refactor(tools): buttons (diff) | |
| download | due.moe-2799da6cbbc63a8c146c84e04922869a40687ef7.tar.xz due.moe-2799da6cbbc63a8c146c84e04922869a40687ef7.zip | |
feat(tools): move all to cards
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/Tools/EpisodeDiscussionCollector.svelte | 4 | ||||
| -rw-r--r-- | src/lib/Tools/RandomFollower.svelte | 14 | ||||
| -rw-r--r-- | src/lib/Tools/SequelSpy.svelte | 8 |
3 files changed, 15 insertions, 11 deletions
diff --git a/src/lib/Tools/EpisodeDiscussionCollector.svelte b/src/lib/Tools/EpisodeDiscussionCollector.svelte index 98b426a7..447333a8 100644 --- a/src/lib/Tools/EpisodeDiscussionCollector.svelte +++ b/src/lib/Tools/EpisodeDiscussionCollector.svelte @@ -64,5 +64,7 @@ </p> {/await} {:else} - <p>Enter a username to search for to continue.</p> + <p /> + + Enter a username to search for to continue. {/if} diff --git a/src/lib/Tools/RandomFollower.svelte b/src/lib/Tools/RandomFollower.svelte index 5b9a2319..88c1bd85 100644 --- a/src/lib/Tools/RandomFollower.svelte +++ b/src/lib/Tools/RandomFollower.svelte @@ -43,14 +43,16 @@ {:then users} {@const user = users[Math.floor(randomSeed * users.length)]} - <p> - <a href={`https://anilist.co/user/${user.id}`} target="_blank"> - {user.name} - </a> - </p> + <p /> + + <a href={`https://anilist.co/user/${user.id}`} target="_blank"> + {user.name} + </a> {:catch} <RateLimited type="Followers" list={false} /> {/await} {:else} - <p>Enter a username to search for to continue.</p> + <p /> + + Enter a username to search for to continue. {/if} diff --git a/src/lib/Tools/SequelSpy.svelte b/src/lib/Tools/SequelSpy.svelte index 5684463f..c5d9c4a2 100644 --- a/src/lib/Tools/SequelSpy.svelte +++ b/src/lib/Tools/SequelSpy.svelte @@ -85,9 +85,9 @@ </ul> {/await} -<p style="opacity: 50%;"> - The count ratio is the number of episodes you've seen of any direct prequels, and the total number - of episodes of all direct prequels. -</p> +<p /> + +The count ratio is the number of episodes you've seen of any direct prequels, and the total number +of episodes of all direct prequels. <HoverCover {hovering} {hoveredMedia} {imageStyle} /> |