diff options
| author | Fuwn <[email protected]> | 2023-12-16 00:07:12 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-16 00:07:12 -0800 |
| commit | 5cd8629e34784b42037cf2a0126064019b1ff3a7 (patch) | |
| tree | 82ad56f8d41a28714f64c8fddbf63ce65a918467 /src | |
| parent | feat(error): more error debugging (diff) | |
| download | due.moe-5cd8629e34784b42037cf2a0126064019b1ff3a7.tar.xz due.moe-5cd8629e34784b42037cf2a0126064019b1ff3a7.zip | |
feat(settings): scroll to section
Diffstat (limited to 'src')
| -rw-r--r-- | src/routes/settings/+page.svelte | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte index 2cb077e8..ba86e720 100644 --- a/src/routes/settings/+page.svelte +++ b/src/routes/settings/+page.svelte @@ -60,7 +60,7 @@ {#if data.user === undefined} Please log in to modify settings. {:else} - <details open> + <details open id="feeds"> <summary>RSS Feeds</summary> <a @@ -81,7 +81,7 @@ <p /> - <details open> + <details open id="display"> <summary>Display</summary> <SettingCheckboxToggle @@ -176,7 +176,7 @@ <p /> - <details open> + <details open id="calculation"> <summary>Calculation</summary> <SettingCheckboxToggle setting="roundDownChapters" text="Round down chapters (recommended)"> @@ -231,7 +231,7 @@ <p /> - <details open> + <details open id="cache"> <summary>Cache</summary> <!-- <a href={'#'} on:click={pruneUnresolved}>Re-cache <b>ALL</b> unresolved manga</a> @@ -267,7 +267,7 @@ <p /> - <details open> + <details open id="debug"> <summary>Debug <small style="opacity: 50%;">{env.PUBLIC_GIT_SHORT_SHA}</small></summary> <a href={'#'} on:click={settings.reset}>Reset <b>ALL</b> settings</a> @@ -286,5 +286,7 @@ <p /> - <Attributions /> + <div id="attributions"> + <Attributions /> + </div> {/if} |