From a7369274ba24298a0449865f147fc65253e992a2 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sat, 14 Feb 2026 18:24:22 -0800 Subject: style: fix font theme application to body text --- frontend/src/index.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'frontend/src') diff --git a/frontend/src/index.css b/frontend/src/index.css index 6396633..c60ddb6 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -24,21 +24,25 @@ h5, .font-default { --font-body: Palatino, 'Palatino Linotype', 'Palatino LT STD', 'Book Antiqua', Georgia, serif; --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-family: var(--font-body); } .font-serif { --font-body: Georgia, 'Times New Roman', Times, serif; --font-heading: Georgia, 'Times New Roman', Times, serif; + font-family: var(--font-body); } .font-sans { --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; --font-heading: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + font-family: var(--font-body); } .font-mono { --font-body: Menlo, Monaco, Consolas, 'Courier New', monospace; --font-heading: Menlo, Monaco, Consolas, 'Courier New', monospace; + font-family: var(--font-body); } :root { -- cgit v1.2.3