diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 224805c..9379be4 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -46,7 +46,8 @@ "Bash(curl -s -c /tmp/jar.txt -d \"email=lars@virk2.dk&password=cab123\" http://localhost:4321/login -o /dev/null -i)", "Bash(curl -s -c /tmp/jar.txt -d \"email=lars@virk2.dk&password=cab123\" http://localhost:4321/login -o /dev/null)", "Bash(curl -s -b /tmp/jar.txt http://localhost:4321/roadmap)", - "Bash(grep -nE \"\\\\.rr-fade-left, \\\\.rr-fade-right|rr-fade-left \\\\{|rr-fade-right \\\\{\" src/components/RoadmapRoute.astro)" + "Bash(grep -nE \"\\\\.rr-fade-left, \\\\.rr-fade-right|rr-fade-left \\\\{|rr-fade-right \\\\{\" src/components/RoadmapRoute.astro)", + "Bash(awk -F: '{print $1}')" ] } } diff --git a/src/layouts/AppLayout.astro b/src/layouts/AppLayout.astro index 6fe4cab..296a57c 100644 --- a/src/layouts/AppLayout.astro +++ b/src/layouts/AppLayout.astro @@ -200,24 +200,11 @@ const year = new Date().getFullYear(); color: var(--on-surface); border-bottom: none; } - /* Active nav link: terracotta color + a serif italic "·" bracket. The - prefix dot acts as a 'you are here' marker without floating below - the link the way the previous indicator did. Switching from sans - uppercase to terracotta serif italic also doubles as a typography - cue, so the active state reads even before colour processes. */ + /* Active nav link: terracotta + slightly heavier weight. Colour alone + is the indicator — no badge, bullet, italic, or family swap. */ .nav-link.active { color: var(--pigment-terracotta); - font-family: var(--font-serif); - font-style: italic; - font-weight: 400; - letter-spacing: var(--tracking-snug); - text-transform: none; - font-size: 15px; - } - .nav-link.active::before { - content: '·'; - margin-right: 6px; - color: var(--pigment-terracotta); + font-weight: 500; } /* ── User zone ──────────────────────────────────────────────────── */