Update app.py
Browse files
app.py
CHANGED
|
@@ -81,6 +81,7 @@ demo = gr.ChatInterface(
|
|
| 81 |
theme=gr.themes.Soft(),
|
| 82 |
retry_btn=None,
|
| 83 |
undo_btn=None,
|
|
|
|
| 84 |
css="""#component-2{
|
| 85 |
flex-direction:row !important;
|
| 86 |
}
|
|
@@ -89,15 +90,15 @@ demo = gr.ChatInterface(
|
|
| 89 |
width: 50% !important;
|
| 90 |
}
|
| 91 |
#component-6{
|
| 92 |
-
width: 50
|
| 93 |
-
position: absolute;
|
| 94 |
-
left: 50
|
| 95 |
-
z-index: 100;
|
| 96 |
-
bottom: 45
|
| 97 |
}
|
| 98 |
#component-14{
|
| 99 |
-
width: 50
|
| 100 |
-
height: 50
|
| 101 |
}"""
|
| 102 |
)
|
| 103 |
|
|
|
|
| 81 |
theme=gr.themes.Soft(),
|
| 82 |
retry_btn=None,
|
| 83 |
undo_btn=None,
|
| 84 |
+
clear_btn=None;
|
| 85 |
css="""#component-2{
|
| 86 |
flex-direction:row !important;
|
| 87 |
}
|
|
|
|
| 90 |
width: 50% !important;
|
| 91 |
}
|
| 92 |
#component-6{
|
| 93 |
+
width: 50% !important;
|
| 94 |
+
position: absolute !important;
|
| 95 |
+
left: 50% !important;
|
| 96 |
+
z-index: 100 !important;
|
| 97 |
+
bottom: 45% !important;
|
| 98 |
}
|
| 99 |
#component-14{
|
| 100 |
+
width: 50% !important;
|
| 101 |
+
height: 50% !important;
|
| 102 |
}"""
|
| 103 |
)
|
| 104 |
|