style: change font family for gradio app
Browse files
app.py
CHANGED
|
@@ -77,6 +77,10 @@ LOGO_PATH = "resources/pialogo.png"
|
|
| 77 |
|
| 78 |
# CSS customizations
|
| 79 |
custom_css = """
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
.container {
|
| 81 |
max-width: 2200px !important;
|
| 82 |
margin: auto;
|
|
|
|
| 77 |
|
| 78 |
# CSS customizations
|
| 79 |
custom_css = """
|
| 80 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
|
| 81 |
+
body, .markdown-content, .container, .chat-container, .message-container {
|
| 82 |
+
font-family: 'Inter', Arial, sans-serif !important;
|
| 83 |
+
}
|
| 84 |
.container {
|
| 85 |
max-width: 2200px !important;
|
| 86 |
margin: auto;
|