unify shared font-family value

This commit is contained in:
yggverse 2025-08-20 05:41:29 +03:00
parent 51b481061b
commit c7cb507315

View file

@ -21,12 +21,13 @@
--default: #ccc; --default: #ccc;
--item: #262728; --item: #262728;
--separator: #1e1e1e; --separator: #1e1e1e;
--font-family: Sans-serif;
} }
body { body {
background: var(--background); background: var(--background);
color: var(--default); color: var(--default);
font-family: Sans-serif; font-family: var(--font-family);
font-size: 14px; font-size: 14px;
} }
@ -136,6 +137,7 @@ main > form > textarea {
opacity: 0.9; opacity: 0.9;
padding: 16px; padding: 16px;
width: 100%; width: 100%;
font-family: var(--font-family);
} }
main > form > input { main > form > input {