Update app.py
Browse files
app.py
CHANGED
|
@@ -79,12 +79,12 @@ additional_inputs=[
|
|
| 79 |
|
| 80 |
css = """
|
| 81 |
/* Hide the header and app name */
|
| 82 |
-
|
| 83 |
-
display: none;
|
| 84 |
}
|
| 85 |
/* Hide the 'Built with Gradio' text */
|
| 86 |
-
|
| 87 |
-
display: none;
|
| 88 |
}
|
| 89 |
"""
|
| 90 |
|
|
|
|
| 79 |
|
| 80 |
css = """
|
| 81 |
/* Hide the header and app name */
|
| 82 |
+
header, .app-name, #interface-title {
|
| 83 |
+
display: none !important;
|
| 84 |
}
|
| 85 |
/* Hide the 'Built with Gradio' text */
|
| 86 |
+
footer {
|
| 87 |
+
display: none !important;
|
| 88 |
}
|
| 89 |
"""
|
| 90 |
|