diff options
| author | Fuwn <[email protected]> | 2024-02-18 06:39:48 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-18 06:39:48 -0800 |
| commit | af7735f541677980185eca843845c876bbc4fc8c (patch) | |
| tree | 2a165947714d50a55747b63cc94a1acd10f91b2a /src | |
| parent | feat(user): no blank link to hololive talent (diff) | |
| download | due.moe-af7735f541677980185eca843845c876bbc4fc8c.tar.xz due.moe-af7735f541677980185eca843845c876bbc4fc8c.zip | |
feat(user): fade separator
Diffstat (limited to 'src')
| -rw-r--r-- | src/routes/user/[user]/+page.svelte | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/routes/user/[user]/+page.svelte b/src/routes/user/[user]/+page.svelte index b7448d31..26f4b35a 100644 --- a/src/routes/user/[user]/+page.svelte +++ b/src/routes/user/[user]/+page.svelte @@ -116,7 +116,7 @@ ‌ <button class="unclickable-button button-badge badge-rainbow">Owner</button> {/if} - <span class="click-item">•</span> + <span class="click-item seperator opaque">•</span> <a href={root(`/user/${userData.name}/badges`)}>Badge Wall</a> </p> @@ -256,4 +256,8 @@ padding: 0.25em; justify-content: space-evenly; } + + .separator { + color: var(--base04); + } </style> |