diff options
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/user/[user]/+page.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/user/[user]/+page.svelte b/src/routes/user/[user]/+page.svelte index fd1e2d7e..1bcedc52 100644 --- a/src/routes/user/[user]/+page.svelte +++ b/src/routes/user/[user]/+page.svelte @@ -489,7 +489,7 @@ const toggleCategory = () => { display: flex; flex-wrap: wrap; column-gap: 1.5em; - background-color: rgba(0, 0, 0, 0.468); + background-color: var(--scrim-banner); color: #d8d8d8; border-top-left-radius: 0; border-top-right-radius: 0; @@ -529,7 +529,7 @@ const toggleCategory = () => { height: $size; object-fit: cover; transition: $transition; - box-shadow: rgba(0, 0, 11, 0.1) 0px 7px 29px 0px; + box-shadow: var(--shadow-card); overflow: hidden; &:hover { |