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:
parent
c37716f685
commit
6e9fd6873f
|
|
@ -1,5 +1,14 @@
|
|||
# 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
|
||||
|
||||
### 🚀 Features
|
||||
|
|
|
|||
|
|
@ -63,8 +63,8 @@
|
|||
--sidebar-border: 0.88 0.008 250;
|
||||
--sidebar-ring: 0.55 0.20 276;
|
||||
--font-sans: 'GeorgiaDigits', Inter, Roboto, ui-sans-serif, system-ui, sans-serif;
|
||||
--font-serif: Merriweather, Georgia, serif;
|
||||
--font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
||||
--font-serif: Merriweather, ui-serif, serif;
|
||||
--font-mono: 'GeorgiaDigits', "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
||||
--radius: 1rem;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "bill-tracker",
|
||||
"version": "0.33.8.1",
|
||||
"version": "0.33.8.2",
|
||||
"description": "Monthly bill tracking system",
|
||||
"main": "server.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ module.exports = {
|
|||
},
|
||||
fontFamily: {
|
||||
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'],
|
||||
},
|
||||
borderRadius: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue