fix: GeorgiaDigits font-bleed fix (batch 0.33.8.2)

- Removed 'Georgia' from --font-serif stack, replaced with ui-serif
- Added 'GeorgiaDigits' to --font-mono for snowball extra payment input
- Georgia now only enters via GeorgiaDigits @font-face with unicode-range
- Bump v0.33.8.1 -> v0.33.8.2
This commit is contained in:
null 2026-05-29 18:42:11 -05:00
parent c37716f685
commit 6e9fd6873f
4 changed files with 13 additions and 4 deletions

View File

@ -1,5 +1,14 @@
# Bill Tracker — Changelog # Bill Tracker — Changelog
## v0.33.8.2
### 🐛 Bug Fixes
- **Georgia font bleed eliminated** — Removed `Georgia` from `--font-serif` fallback stack (replaced with `ui-serif`). Georgia now has exactly one entry point: the `GeorgiaDigits` @font-face with `unicode-range` for digits and currency only.
- **`--font-mono` gets GeorgiaDigits** — Added `'GeorgiaDigits'` to the mono stack so the snowball extra payment input fields also get Georgia for digit characters.
---
## v0.33.8.1 ## v0.33.8.1
### 🚀 Features ### 🚀 Features

View File

@ -63,8 +63,8 @@
--sidebar-border: 0.88 0.008 250; --sidebar-border: 0.88 0.008 250;
--sidebar-ring: 0.55 0.20 276; --sidebar-ring: 0.55 0.20 276;
--font-sans: 'GeorgiaDigits', Inter, Roboto, ui-sans-serif, system-ui, sans-serif; --font-sans: 'GeorgiaDigits', Inter, Roboto, ui-sans-serif, system-ui, sans-serif;
--font-serif: Merriweather, Georgia, serif; --font-serif: Merriweather, ui-serif, serif;
--font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; --font-mono: 'GeorgiaDigits', "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
--radius: 1rem; --radius: 1rem;
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "bill-tracker", "name": "bill-tracker",
"version": "0.33.8.1", "version": "0.33.8.2",
"description": "Monthly bill tracking system", "description": "Monthly bill tracking system",
"main": "server.js", "main": "server.js",
"scripts": { "scripts": {

View File

@ -50,7 +50,7 @@ module.exports = {
}, },
fontFamily: { fontFamily: {
sans: ['var(--font-sans)', 'ui-sans-serif', 'system-ui', 'sans-serif'], sans: ['var(--font-sans)', 'ui-sans-serif', 'system-ui', 'sans-serif'],
serif: ['var(--font-serif)', 'ui-serif', 'Georgia', 'serif'], serif: ['var(--font-serif)', 'ui-serif', 'serif'],
mono: ['var(--font-mono)', 'ui-monospace', 'SFMono-Regular', 'monospace'], mono: ['var(--font-mono)', 'ui-monospace', 'SFMono-Regular', 'monospace'],
}, },
borderRadius: { borderRadius: {