Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -256,7 +256,14 @@ def sysml_chatbot(message, history):
|
|
256 |
return answer, history
|
257 |
|
258 |
# Gradio UI
|
259 |
-
with gr.Blocks(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
|
261 |
gr.Markdown("## SysModeler Chatbot")
|
262 |
|
|
|
256 |
return answer, history
|
257 |
|
258 |
# Gradio UI
|
259 |
+
with gr.Blocks(css="""
|
260 |
+
#submit-btn {
|
261 |
+
height: 100%;
|
262 |
+
background-color: #48CAE4;
|
263 |
+
color: white;
|
264 |
+
font-size: 1.5em;
|
265 |
+
}
|
266 |
+
""") as demo:
|
267 |
|
268 |
gr.Markdown("## SysModeler Chatbot")
|
269 |
|