From c7cb5073159af1647fbcb19bab15c037092aab7a Mon Sep 17 00:00:00 2001 From: yggverse Date: Wed, 20 Aug 2025 05:41:29 +0300 Subject: [PATCH] unify shared `font-family` value --- public/theme/default.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/theme/default.css b/public/theme/default.css index e273fe4..d504e61 100644 --- a/public/theme/default.css +++ b/public/theme/default.css @@ -21,12 +21,13 @@ --default: #ccc; --item: #262728; --separator: #1e1e1e; + --font-family: Sans-serif; } body { background: var(--background); color: var(--default); - font-family: Sans-serif; + font-family: var(--font-family); font-size: 14px; } @@ -136,6 +137,7 @@ main > form > textarea { opacity: 0.9; padding: 16px; width: 100%; + font-family: var(--font-family); } main > form > input {