diff options
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/+layout.svelte | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 858c9f33..a15e14ee 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -43,7 +43,7 @@ <a href="/tools" class="header-item">Tools</a> <a href="/settings" class="header-item">Settings</a> - <span style="opacity: 50%; font-weight: bold;">|</span> + <span style="opacity: 50%;">|</span> {#if data.user} <a href={`/user/${currentUserIdentity.name}`} class="header-item">Profile</a> @@ -78,11 +78,11 @@ </div> <style> - @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;550;700;800&display=swap'); - #header { - font-family: 'Lato', sans-serif; - font-size: 1.1rem; + font-family: 'Quicksand', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, + Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + font-size: 1em; + font-weight: 500; } :global(html.light-theme) { |