diff options
Diffstat (limited to 'src/routes/user')
| -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); } } |