diff options
| author | Fuwn <[email protected]> | 2024-02-11 00:01:45 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-11 00:01:45 -0800 |
| commit | 53bf5f7d7a49574e4d7dc2c4b6255d529788a782 (patch) | |
| tree | 7605fa88e2d295743ecfb3e27c9b53bb8c84b0f0 /src/routes | |
| parent | fix(layout): no word splitting (diff) | |
| download | due.moe-53bf5f7d7a49574e4d7dc2c4b6255d529788a782.tar.xz due.moe-53bf5f7d7a49574e4d7dc2c4b6255d529788a782.zip | |
feat(layout): new separator
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/+layout.svelte | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index c7529e27..61d425f2 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -122,7 +122,7 @@ <a href={root('/tools')} class="header-item">{$locale().navigation.tools}</a> <a href={root('/settings')} class="header-item">{$locale().navigation.settings}</a> - <span class="header-item opaque">|</span> + <span class="header-item opaque separator">•</span> {#if data.user} <a href={root(`/user/${$userIdentity.name}`)} class="header-item"> @@ -240,4 +240,8 @@ border-radius: 8px; box-shadow: 0 1.5px 9px var(--base01), 0 0 0 4px var(--base0E), 0 4px 30px var(--base01); } + + .separator { + color: var(--base04); + } </style> |