aboutsummaryrefslogtreecommitdiffstats
path: root/frontend-vanilla/src
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-17 15:51:14 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-17 15:51:14 -0800
commitfd5f67d2a45dbefbc1045bf8270cc3bc5d711592 (patch)
tree39b2a17633061a6ed442fd94a8cb1d08fc88884c /frontend-vanilla/src
parent669690baaf21c015af77f888f5b5fb71f171de2e (diff)
downloadneko-fd5f67d2a45dbefbc1045bf8270cc3bc5d711592.tar.gz
neko-fd5f67d2a45dbefbc1045bf8270cc3bc5d711592.tar.bz2
neko-fd5f67d2a45dbefbc1045bf8270cc3bc5d711592.zip
Refine Settings labels and apply heading font to sidebar
Diffstat (limited to 'frontend-vanilla/src')
-rw-r--r--frontend-vanilla/src/main.ts4
-rw-r--r--frontend-vanilla/src/style.css6
2 files changed, 5 insertions, 5 deletions
diff --git a/frontend-vanilla/src/main.ts b/frontend-vanilla/src/main.ts
index 62a47cc..9c8f2b3 100644
--- a/frontend-vanilla/src/main.ts
+++ b/frontend-vanilla/src/main.ts
@@ -395,7 +395,7 @@ export function renderSettings() {
</div>
</div>
<div class="settings-group" style="margin-top: 1rem;">
- <label>Heading Font</label>
+ <label>System & headings</label>
<select id="heading-font-selector" style="margin-bottom: 1rem;">
<option value="default" ${store.headingFontTheme === 'default' ? 'selected' : ''}>System (Helvetica Neue)</option>
<option value="serif" ${store.headingFontTheme === 'serif' ? 'selected' : ''}>Serif (Georgia)</option>
@@ -403,7 +403,7 @@ export function renderSettings() {
<option value="mono" ${store.headingFontTheme === 'mono' ? 'selected' : ''}>Monospace</option>
</select>
- <label>Body Font</label>
+ <label>article body</label>
<select id="font-selector">
<option value="default" ${store.fontTheme === 'default' ? 'selected' : ''}>Default (Palatino)</option>
<option value="serif" ${store.fontTheme === 'serif' ? 'selected' : ''}>Serif (Georgia)</option>
diff --git a/frontend-vanilla/src/style.css b/frontend-vanilla/src/style.css
index 77b6850..e9512b7 100644
--- a/frontend-vanilla/src/style.css
+++ b/frontend-vanilla/src/style.css
@@ -117,7 +117,7 @@ html {
}
.sidebar-section h3 {
- font-family: var(--font-sans);
+ font-family: var(--font-heading);
font-size: 0.7rem;
/* Slightly smaller */
text-transform: uppercase;
@@ -174,7 +174,7 @@ html {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
- font-family: var(--font-sans);
+ font-family: var(--font-heading);
}
.sidebar-section li a:hover {
@@ -207,7 +207,7 @@ html {
text-decoration: none;
color: var(--text-color);
font-size: 0.9rem;
- font-family: var(--font-sans);
+ font-family: var(--font-heading);
}
.sidebar-footer a:hover {