diff options
| author | Fuwn <[email protected]> | 2026-01-23 02:14:40 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-23 02:14:40 -0800 |
| commit | 9fdc552fa90dd1372ff36534995b5c057e871e59 (patch) | |
| tree | 2b7d67eb7249cefb6b94a21cca45b41ec4b723cc /src/routes/settings/+page.svelte | |
| parent | fix(CommandPalette): Suppress intentional a11y warnings for command palette o... (diff) | |
| download | due.moe-9fdc552fa90dd1372ff36534995b5c057e871e59.tar.xz due.moe-9fdc552fa90dd1372ff36534995b5c057e871e59.zip | |
refactor(layout): Replace empty p elements with reusable Spacer component
Diffstat (limited to 'src/routes/settings/+page.svelte')
| -rw-r--r-- | src/routes/settings/+page.svelte | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte index 25b2f6e1..e8b79fa1 100644 --- a/src/routes/settings/+page.svelte +++ b/src/routes/settings/+page.svelte @@ -1,4 +1,5 @@ <script lang="ts"> + import Spacer from '$lib/Layout/Spacer.svelte'; /* eslint svelte/no-at-html-tags: "off" */ import Attributions from '$lib/Settings/Categories/Attributions.svelte'; @@ -50,7 +51,7 @@ にDMを送ってください! {/if} - <!-- <p></p> + <!-- <Spacer /> <p> <b>{$locale().settings.fields.notice}</b> @@ -71,7 +72,7 @@ </Category> </div> - <p></p> + <Spacer /> <Category title={$locale().settings.display.title}><Display /></Category> <Category title={$locale().settings.calculation.title}><Calculation /></Category> |