From af2598451c0449dc8e51455317d09d98d78cf7ae Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Sat, 16 May 2026 19:39:36 -0400 Subject: [PATCH] feat(nav): health dot beside wordmark + #fc-nav-actions per-view slot Co-Authored-By: Claude Opus 4.7 (1M context) --- frontend/src/components/TopNav.vue | 36 +++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/frontend/src/components/TopNav.vue b/frontend/src/components/TopNav.vue index b8c4648..4493050 100644 --- a/frontend/src/components/TopNav.vue +++ b/frontend/src/components/TopNav.vue @@ -1,9 +1,14 @@ @@ -109,15 +113,21 @@ const health = computed(() => { color: rgb(var(--v-theme-accent)); } +.fc-nav-left { + display: flex; + align-items: center; + gap: 8px; + flex-shrink: 0; +} .fc-health { display: flex; align-items: center; - gap: 6px; flex-shrink: 0; - opacity: 0.8; } -.fc-health__label { - font-size: 0.75rem; - color: rgb(var(--v-theme-on-surface)); +.fc-nav-actions { + display: flex; + align-items: center; + gap: 0.5rem; + flex-shrink: 0; }