diff options
| author | Fuwn <[email protected]> | 2025-06-11 23:52:43 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-11 23:52:43 -0700 |
| commit | 1bc4488a06db88597327ecc855c5b70a7ddc55ce (patch) | |
| tree | ded544d953d4b62fc4365c2758d75f02efe7d625 /src/routes | |
| parent | fix: Migrate localStorage.removeItem to localforage for anime and manga stores (diff) | |
| download | due.moe-1bc4488a06db88597327ecc855c5b70a7ddc55ce.tar.xz due.moe-1bc4488a06db88597327ecc855c5b70a7ddc55ce.zip | |
style: Reformat using latest formatting
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/user/[user]/+page.svelte | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/routes/user/[user]/+page.svelte b/src/routes/user/[user]/+page.svelte index d60ea8e5..f86660fd 100644 --- a/src/routes/user/[user]/+page.svelte +++ b/src/routes/user/[user]/+page.svelte @@ -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); } } |