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
-7
View File
@@ -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;
-11
View File
@@ -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
View File
@@ -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>
-6
View File
@@ -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;