Update inference_webui.py
Browse files- inference_webui.py +6 -1
inference_webui.py
CHANGED
|
@@ -611,8 +611,13 @@ def html_left(text, label='p'):
|
|
| 611 |
<{label} style="margin: 0; padding: 0;">{text}</{label}>
|
| 612 |
</div>"""
|
| 613 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 614 |
|
| 615 |
-
with gr.Blocks(
|
| 616 |
|
| 617 |
with gr.Group():
|
| 618 |
gr.Markdown(html_center(i18n("*请上传并填写参考信息"),'h3'))
|
|
|
|
| 611 |
<{label} style="margin: 0; padding: 0;">{text}</{label}>
|
| 612 |
</div>"""
|
| 613 |
|
| 614 |
+
css = """
|
| 615 |
+
footer {
|
| 616 |
+
visibility: hidden;
|
| 617 |
+
}
|
| 618 |
+
"""
|
| 619 |
|
| 620 |
+
with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as app:
|
| 621 |
|
| 622 |
with gr.Group():
|
| 623 |
gr.Markdown(html_center(i18n("*请上传并填写参考信息"),'h3'))
|