From 5b8e98203db832bfba4539889b5ca3eeec75037c Mon Sep 17 00:00:00 2001
From: Fuegovic <32828263+fuegovic@users.noreply.github.com>
Date: Sat, 18 May 2024 21:30:41 -0400
Subject: [PATCH] use mono font for code
---
components/FooterMenu.tsx | 2 +-
pages/_app.tsx | 8 +++++---
style.css | 4 ++++
3 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/components/FooterMenu.tsx b/components/FooterMenu.tsx
index 5bcbb4b..df80e87 100644
--- a/components/FooterMenu.tsx
+++ b/components/FooterMenu.tsx
@@ -111,7 +111,7 @@ const FooterMenu = () => {
))}
-
© {new Date().getFullYear()} LibreChat
+
© {new Date().getFullYear()} LibreChat
-
+
+ {/*
*/}
diff --git a/style.css b/style.css
index b305ded..3f0cb57 100644
--- a/style.css
+++ b/style.css
@@ -97,6 +97,7 @@
body {
@apply bg-background text-foreground !important;
+ font-family: var(--font-sans);
font-feature-settings:
'rlig' 1,
'calt' 1;
@@ -104,13 +105,16 @@
footer {
@apply bg-background text-foreground !important;
+ font-family: var(--font-sans);
}
h1 {
@apply tracking-tight font-mono leading-tight;
+ font-family: var(--font-sans);
}
h2 {
@apply tracking-tight;
+ font-family: var(--font-sans);
}
}