diff options
| author | Fuwn <[email protected]> | 2026-01-22 21:47:18 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-22 21:47:18 -0800 |
| commit | fddf1c32424f161987a8ba256824af869c983f2f (patch) | |
| tree | 491f1f5aa1f81b425577629bfc088da64a09625d /src | |
| parent | deps(svelte): Migrate to Svelte 5 (diff) | |
| download | due.moe-fddf1c32424f161987a8ba256824af869c983f2f.tar.xz due.moe-fddf1c32424f161987a8ba256824af869c983f2f.zip | |
deps(svelte): Migrate to Svelte 5 with compatibility mode
Diffstat (limited to 'src')
| -rw-r--r-- | src/routes/user/[user]/+page.svelte | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/routes/user/[user]/+page.svelte b/src/routes/user/[user]/+page.svelte index d60ea8e5..150a46cc 100644 --- a/src/routes/user/[user]/+page.svelte +++ b/src/routes/user/[user]/+page.svelte @@ -17,7 +17,7 @@ import proxy from '$lib/Utility/proxy'; import { parseScheduleHtml } from '$lib/Data/hololive'; import type { Preferences } from '../../../graphql/$types'; - import SvelteMarkdown from 'svelte-markdown'; + import SvelteMarkdown from '@humanspeak/svelte-markdown'; import MarkdownLink from '$lib/MarkdownLink.svelte'; import LinkedTooltip from '$lib/Tooltip/LinkedTooltip.svelte'; import { graphql } from '$houdini'; @@ -498,7 +498,9 @@ .user-grid-hololive-badges { $transitionDuration: 0.45s; - $transition: transform $transitionDuration ease, box-shadow $transitionDuration ease; + $transition: + transform $transitionDuration ease, + box-shadow $transitionDuration ease; $size: 5.25em; border-radius: 8px; @@ -513,7 +515,10 @@ z-index: 2; transition: $transition; transform: scale(1.15); - box-shadow: 0 1.5px 9px var(--base01), 0 0 0 4px var(--base02), 0 4px 30px var(--base01); + box-shadow: + 0 1.5px 9px var(--base01), + 0 0 0 4px var(--base02), + 0 4px 30px var(--base01); } } |