Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -72,7 +72,12 @@ chat = gr.ChatInterface(
|
|
| 72 |
# Wrap in Blocks to add custom CSS and preserve theme
|
| 73 |
with gr.Blocks(
|
| 74 |
theme=gr.themes.Soft(),
|
| 75 |
-
css="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 76 |
) as demo:
|
| 77 |
chat.render()
|
| 78 |
|
|
|
|
| 72 |
# Wrap in Blocks to add custom CSS and preserve theme
|
| 73 |
with gr.Blocks(
|
| 74 |
theme=gr.themes.Soft(),
|
| 75 |
+
css="""
|
| 76 |
+
footer {display: none !important;}
|
| 77 |
+
.footer {display: none !important;}
|
| 78 |
+
#footer {display: none !important;}
|
| 79 |
+
.svelte-1p1dq6v {display: none !important;}
|
| 80 |
+
"""
|
| 81 |
) as demo:
|
| 82 |
chat.render()
|
| 83 |
|