aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/routes/player/[player]/[profile].svelte6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/routes/player/[player]/[profile].svelte b/src/routes/player/[player]/[profile].svelte
index 27e61de..de30c21 100644
--- a/src/routes/player/[player]/[profile].svelte
+++ b/src/routes/player/[player]/[profile].svelte
@@ -136,7 +136,7 @@
blurred={data.customization?.blurBackground ?? false}
/>
-<main>
+<main class:has-blurred-background={data.customization?.blurBackground && backgroundUrl}>
{#if data.customization?.blurBackground && backgroundUrl}
<div class="blurred-background-container-container">
<div class="blurred-background-container">
@@ -409,4 +409,8 @@
color: var(--theme-darker-text);
font-size: 0.9rem;
}
+
+ .has-blurred-background #categories {
+ width: 47rem;
+ }
</style>