diff options
| author | Fuwn <[email protected]> | 2024-01-04 06:51:02 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-04 06:51:02 -0800 |
| commit | e25e9f2e65bb815b292c9ca9a0f24bdfe1845e5b (patch) | |
| tree | 1cfac84e0750480299960a70e1c1c679c536e4be /src/routes | |
| parent | fix(hovercover): image height overflow (diff) | |
| download | due.moe-e25e9f2e65bb815b292c9ca9a0f24bdfe1845e5b.tar.xz due.moe-e25e9f2e65bb815b292c9ca9a0f24bdfe1845e5b.zip | |
feat: cool styles
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 { |