···1414}
15151616a:where([href]:not([class])) {
1717- --anchor-underline-color: oklch(from currentColor l c h / 0.6);
1717+ --anchor-underline-color: rgb(from currentColor r g b / 0.6);
1818 --anchor-underline-offset: 0.2em;
1919 --anchor-underline-thickness: 2px;
2020 color: rgb(var(--color-yellow));
···2525 text-underline-offset: var(--anchor-underline-offset);
26262727 &:hover {
2828- --anchor-underline-color: oklch(from currentColor l c h / 0.1);
2828+ --anchor-underline-color: rgb(from currentColor r g b / 0.1);
2929 color: rgb(var(--color-light-yellow));
3030 }
3131}
+4-9
src/routes/+layout.svelte
···11<script lang="ts">
22 import { dev } from "$app/environment";
33+ import Nav from "$components/nav.svelte";
34 import "$css/main.css";
45 import { pointer } from "$lib/dialog.svelte.js";
56 import { onMount } from "svelte";
77+88+ let { data, children } = $props();
69710 onMount(() => {
811 if (dev === false) {
···1417 pointer.ref.showPopover();
1518 }
1619 });
1717-1818- let { data, children } = $props();
1920</script>
20212122<svelte:head>
···3435</svelte:head>
35363637<header>
3737- <nav>
3838- <a href="/">attic.social</a>
3939- {#if data.user}
4040- <a href="/bookmarks/{data.user.did}">bookmarks</a>
4141- <a href="/settings">settings</a>
4242- {/if}
4343- </nav>
3838+ <Nav user={data.user} />
4439</header>
45404641<main>