diff options
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/+layout.svelte | 1 | ||||
| -rw-r--r-- | src/routes/completed/+page.svelte | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 093c7d40..f9e74429 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -6,6 +6,7 @@ import settings from '$stores/settings'; import { browser } from '$app/environment'; import HeadTitle from '$lib/HeadTitle.svelte'; + import '../app.css'; export let data; diff --git a/src/routes/completed/+page.svelte b/src/routes/completed/+page.svelte index 3e324b6d..3bc6729e 100644 --- a/src/routes/completed/+page.svelte +++ b/src/routes/completed/+page.svelte @@ -67,6 +67,8 @@ #list-container { display: flex; flex-wrap: wrap; + align-items: start; + gap: 1em; } .list { |