TejAndrewsACC commited on
Commit
f230207
·
verified ·
1 Parent(s): 7f7cc97

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -12
app.py CHANGED
@@ -3647,20 +3647,12 @@ def respond(message, history, max_tokens, temperature, top_p):
3647
 
3648
 
3649
  css = """
3650
- @import url('https://fonts.googleapis.com/css2?family=Segoe+UI&display=swap');
 
3651
 
3652
- /* Apply font to all elements */
3653
  * {
3654
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
3655
- }
3656
-
3657
- /* Ensure font is applied to the Chatbot and other components */
3658
- .gradio-chatbot {
3659
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
3660
- }
3661
-
3662
- .gradio-chatbot .message {
3663
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
3664
  }
3665
 
3666
  #chat-interface {
 
3647
 
3648
 
3649
  css = """
3650
+ /* Import Caveat font from Google Fonts */
3651
+ @import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
3652
 
3653
+ /* Apply Caveat font globally */
3654
  * {
3655
+ font-family: 'Caveat', cursive !important;
 
 
 
 
 
 
 
 
 
3656
  }
3657
 
3658
  #chat-interface {