diff options
| author | Fuwn <[email protected]> | 2023-12-21 14:11:38 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-21 14:11:38 -0800 |
| commit | 684df2249faa003d44568e154d5977388f31c11f (patch) | |
| tree | b0948235c8e5029d1662f1691f7d7b5553c4830c /src/routes/tools | |
| parent | feat(schedule): remove duplicate timezone display (diff) | |
| download | due.moe-684df2249faa003d44568e154d5977388f31c11f.tar.xz due.moe-684df2249faa003d44568e154d5977388f31c11f.zip | |
feat(routes): add blockquote to top level select
Diffstat (limited to 'src/routes/tools')
| -rw-r--r-- | src/routes/tools/+page.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/tools/+page.svelte b/src/routes/tools/+page.svelte index ccd54d63..ad9df7e6 100644 --- a/src/routes/tools/+page.svelte +++ b/src/routes/tools/+page.svelte @@ -21,7 +21,7 @@ } </script> -<p> +<blockquote> <select bind:value={tool}> <option value="default" selected disabled hidden>Tool</option> <option value="todays_character_birthdays">Today's Character Birthdays</option> @@ -30,7 +30,7 @@ <option value="episode_discussion_collector">Episode Discussion Collector (Beta)</option> <option value="sequel_spy">Sequel Spy</option> </select> -</p> +</blockquote> {#if tool === 'default'} Select a tool to continue. |