Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -3647,20 +3647,12 @@ def respond(message, history, max_tokens, temperature, top_p):
|
|
| 3647 |
|
| 3648 |
|
| 3649 |
css = """
|
| 3650 |
-
|
|
|
|
| 3651 |
|
| 3652 |
-
/* Apply font
|
| 3653 |
* {
|
| 3654 |
-
font-family: '
|
| 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 {
|