diff options
Diffstat (limited to 'frontend-vanilla')
| -rw-r--r-- | frontend-vanilla/src/main.ts | 4 | ||||
| -rw-r--r-- | frontend-vanilla/src/style.css | 6 |
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 { |
