From 9f215b89f79e07e51c9cb341ed8bca2905428a18 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Sat, 8 Nov 2025 20:46:28 -0800 Subject: [PATCH] Feat: Apply Nata/Noto Sans to UI/sidebars --- src/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/style.css b/src/style.css index 6f1031b..61c7639 100644 --- a/src/style.css +++ b/src/style.css @@ -9,7 +9,7 @@ html,body{overscroll-behavior-y:contain} #htmlEditor,#extensionHtmlEditor,#jsonSchemaEditor{outline:none;white-space:pre!important;font-size:11px;line-height:1.5;} :not(pre)>code{font-size:85%;padding:.2em .4em;margin:0;border-radius:6px;background-color:rgba(175,184,193,0.2)} -/* UI + sidebars use Poppins (chat markdown keeps default) */ +/* UI + sidebars use Nata Sans via Noto Sans fallback; markdown keeps default */ body, #topbar, #footer, @@ -26,6 +26,6 @@ body, button, input, select, -textarea { - font-family:'Poppins',system-ui,-apple-system,BlinkMacSystemFont,'SF Pro Text','Segoe UI',sans-serif; +textarea{ + font-family:'Noto Sans','Nata Sans',system-ui,-apple-system,BlinkMacSystemFont,'SF Pro Text','Segoe UI',sans-serif; }