feat(ui): drop active-link underline + redundant page-title headers
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<template>
|
||||
<v-container fluid class="py-6">
|
||||
<h1 class="fc-h1 mb-4">Gallery</h1>
|
||||
<div class="fc-gallery-layout">
|
||||
<div class="fc-gallery-layout__main">
|
||||
<EmptyState v-if="store.isEmpty" />
|
||||
@@ -63,12 +62,6 @@ function closeImage() {
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.fc-h1 {
|
||||
font-family: 'Fraunces', Georgia, serif;
|
||||
font-size: 32px;
|
||||
font-weight: 500;
|
||||
color: rgb(var(--v-theme-on-surface));
|
||||
}
|
||||
.fc-gallery-layout {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<template>
|
||||
<v-container class="py-6">
|
||||
<h1 class="fc-h1 mb-6">Settings</h1>
|
||||
|
||||
<v-tabs v-model="tab" color="accent" class="mb-4">
|
||||
<v-tab value="overview">Overview</v-tab>
|
||||
<v-tab value="import">Import</v-tab>
|
||||
@@ -85,12 +83,3 @@ watch(tab, (t) => {
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.fc-h1 {
|
||||
font-family: 'Fraunces', Georgia, serif;
|
||||
font-size: 32px;
|
||||
font-weight: 500;
|
||||
color: rgb(var(--v-theme-on-surface));
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<template>
|
||||
<v-container fluid class="py-6">
|
||||
<div class="fc-showcase__head">
|
||||
<h1 class="fc-h1">Showcase</h1>
|
||||
<v-btn
|
||||
prepend-icon="mdi-shuffle-variant" variant="tonal" color="accent"
|
||||
:loading="store.loading" @click="store.shuffle()"
|
||||
@@ -42,13 +41,8 @@ function openImage(id) {
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.fc-h1 {
|
||||
font-family: 'Fraunces', Georgia, serif;
|
||||
font-size: 32px; font-weight: 500;
|
||||
color: rgb(var(--v-theme-on-surface));
|
||||
}
|
||||
.fc-showcase__head {
|
||||
display: flex; align-items: center; justify-content: space-between;
|
||||
display: flex; align-items: center; justify-content: flex-end;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<template>
|
||||
<v-container fluid class="py-6">
|
||||
<h1 class="fc-h1 mb-4">Tags</h1>
|
||||
|
||||
<div class="fc-tags__controls">
|
||||
<v-text-field
|
||||
@@ -77,11 +76,6 @@ function openTag(tagId) {
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.fc-h1 {
|
||||
font-family: 'Fraunces', Georgia, serif;
|
||||
font-size: 32px; font-weight: 500;
|
||||
color: rgb(var(--v-theme-on-surface));
|
||||
}
|
||||
.fc-tags__controls {
|
||||
display: flex; align-items: center; gap: 16px;
|
||||
flex-wrap: wrap; margin-bottom: 16px;
|
||||
|
||||
Reference in New Issue
Block a user