diff options
| author | Fuwn <[email protected]> | 2023-12-18 22:50:45 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-18 22:50:45 -0800 |
| commit | b697ce225ec3ac5878fdb252ad540efdc37dacc7 (patch) | |
| tree | 741023ad33692a9a3710f585e0572f1e9ad02cb1 /src | |
| parent | feat(schedule): move current day to first (diff) | |
| download | due.moe-b697ce225ec3ac5878fdb252ad540efdc37dacc7.tar.xz due.moe-b697ce225ec3ac5878fdb252ad540efdc37dacc7.zip | |
fix(layout): mobile hover header
Diffstat (limited to 'src')
| -rw-r--r-- | src/routes/+layout.svelte | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index af1ce9ed..ee826f28 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -42,6 +42,8 @@ {:else} <a href="/api/authentication/log-out">Log out ({currentUserIdentity.name})</a> {/if} + + <p /> </div> {:else} <div id="header"> @@ -71,14 +73,15 @@ </p> <div id="mobile-navigation-bar"> - <a href="/">Home</a> • <a href="/completed">Completed</a> • <a href="/tools">Tools</a> + <a href="/">Home</a> • <a href="/completed">Completed</a> • + <a href="/schedule">Anime Schedule</a> • + <a href="/updates">Manga & LN Updates</a> • + <a href="/tools">Tools</a> • {#if data.user} - • <a href={`/user/${currentUserIdentity.name}`}>Profile</a> + <a href={`/user/${currentUserIdentity.name}`}>Profile</a> • {/if} <br /> <a href="/settings">Settings</a> - <a href="/updates">Manga & LN Updates</a> • - <a href="/schedule">Anime Schedule</a> <p /> </div> @@ -144,7 +147,10 @@ @media (max-width: 640px) { #hover-header { - font-size: 5vw; + opacity: 1; + position: unset; + padding: 0; + /* font-size: 5vw; */ } } |