From d9395f8ed88b8c8868347b48aa6e903c275c1dc4 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Sat, 8 Nov 2025 20:42:53 -0800 Subject: [PATCH] Feat: Apply Poppins to UI/sidebars only --- src/style.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/style.css b/src/style.css index 95f7d78..6f1031b 100644 --- a/src/style.css +++ b/src/style.css @@ -9,3 +9,23 @@ 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) */ +body, +#topbar, +#footer, +#sidebarLeft, +#sidebarRight, +#suneModal, +#accountSettingsModal, +.menu-card, +.menu-item, +#composer textarea, +#suneList, +#threadList, +#userMenu, +button, +input, +select, +textarea { + font-family:'Poppins',system-ui,-apple-system,BlinkMacSystemFont,'SF Pro Text','Segoe UI',sans-serif; +}