feat(ui): drop active-link underline + redundant page-title headers

This commit is contained in:
2026-05-15 23:27:38 -04:00
parent e92b05028b
commit 062a87e968
5 changed files with 3 additions and 35 deletions
+2 -4
View File
@@ -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 {