From 062a87e968e7ba1eac2089049dd476bd7557780b Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Fri, 15 May 2026 23:27:38 -0400 Subject: [PATCH] feat(ui): drop active-link underline + redundant page-title headers --- frontend/src/components/TopNav.vue | 6 ++---- frontend/src/views/GalleryView.vue | 7 ------- frontend/src/views/SettingsView.vue | 11 ----------- frontend/src/views/ShowcaseView.vue | 8 +------- frontend/src/views/TagsView.vue | 6 ------ 5 files changed, 3 insertions(+), 35 deletions(-) diff --git a/frontend/src/components/TopNav.vue b/frontend/src/components/TopNav.vue index 60fd0e8..b8c4648 100644 --- a/frontend/src/components/TopNav.vue +++ b/frontend/src/components/TopNav.vue @@ -96,7 +96,6 @@ const health = computed(() => { text-decoration: none; font-weight: 500; font-size: 1rem; - border-bottom: 2px solid transparent; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); transition: background 0.2s ease, transform 0.1s ease; } @@ -104,11 +103,10 @@ const health = computed(() => { background: rgba(232, 228, 216, 0.12); transform: translateY(-1px); } -/* Active route: accent text + thin accent underline (FabledDesignSystem: - accent for nav-active, never on action buttons). */ +/* Active route: accent text only (FabledDesignSystem: accent for + nav-active, never on action buttons). No underline. */ .fc-link.router-link-exact-active { color: rgb(var(--v-theme-accent)); - border-bottom-color: rgb(var(--v-theme-accent)); } .fc-health { diff --git a/frontend/src/views/GalleryView.vue b/frontend/src/views/GalleryView.vue index 32a4488..fe767dc 100644 --- a/frontend/src/views/GalleryView.vue +++ b/frontend/src/views/GalleryView.vue @@ -1,6 +1,5 @@