Update app.py
Browse files
app.py
CHANGED
|
@@ -91,6 +91,12 @@ with gr.Blocks(css="""
|
|
| 91 |
.gradio-markdown { background-color: #2D336B; color: white; padding: 10px; border-radius: 10px; }
|
| 92 |
.gradio-button { background-color: #7886C7; color: white; border-radius: 10px; }
|
| 93 |
.gradio-chatbot-message { background-color: #FFF2F2; color: #2D336B; padding: 10px; border-radius: 10px; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 94 |
""") as demo:
|
| 95 |
gr.Markdown("# 🌍 ***FlightAI - Your Travel Assistant / Votre Assistant de Voyage*** ✈️\n")
|
| 96 |
|
|
|
|
| 91 |
.gradio-markdown { background-color: #2D336B; color: white; padding: 10px; border-radius: 10px; }
|
| 92 |
.gradio-button { background-color: #7886C7; color: white; border-radius: 10px; }
|
| 93 |
.gradio-chatbot-message { background-color: #FFF2F2; color: #2D336B; padding: 10px; border-radius: 10px; }
|
| 94 |
+
|
| 95 |
+
#chat-container {
|
| 96 |
+
height: 75vh !important; /* Takes 75% of the screen height */
|
| 97 |
+
max-height: 75vh !important;
|
| 98 |
+
overflow-y: auto; /* Ensures scrolling still works */
|
| 99 |
+
}
|
| 100 |
""") as demo:
|
| 101 |
gr.Markdown("# 🌍 ***FlightAI - Your Travel Assistant / Votre Assistant de Voyage*** ✈️\n")
|
| 102 |
|