bugfix front
Browse files
app.py
CHANGED
|
@@ -365,6 +365,7 @@ with gr.Blocks(title="Climate Q&A", css_paths=os.getcwd()+ "/style.css", theme=t
|
|
| 365 |
elem_id="chatbot",
|
| 366 |
layout = "panel",
|
| 367 |
avatar_images = (None,"https://i.ibb.co/YNyd5W2/logo4.png"),
|
|
|
|
| 368 |
)
|
| 369 |
|
| 370 |
# bot.like(vote,None,None)
|
|
|
|
| 365 |
elem_id="chatbot",
|
| 366 |
layout = "panel",
|
| 367 |
avatar_images = (None,"https://i.ibb.co/YNyd5W2/logo4.png"),
|
| 368 |
+
max_height="80vh",
|
| 369 |
)
|
| 370 |
|
| 371 |
# bot.like(vote,None,None)
|
style.css
CHANGED
|
@@ -6,6 +6,7 @@
|
|
| 6 |
/* fix for huggingface infinite growth*/
|
| 7 |
main.flex.flex-1.flex-col {
|
| 8 |
max-height: 95vh;
|
|
|
|
| 9 |
}
|
| 10 |
|
| 11 |
|
|
|
|
| 6 |
/* fix for huggingface infinite growth*/
|
| 7 |
main.flex.flex-1.flex-col {
|
| 8 |
max-height: 95vh;
|
| 9 |
+
max-height: 95vh !important;
|
| 10 |
}
|
| 11 |
|
| 12 |
|