Update app.py
Browse files
app.py
CHANGED
@@ -58,16 +58,14 @@ examples = [
|
|
58 |
]
|
59 |
|
60 |
css = """
|
61 |
-
|
62 |
-
|
63 |
-
max-width: 640px;
|
64 |
}
|
65 |
"""
|
66 |
|
67 |
-
with gr.Blocks(css=css
|
|
|
68 |
with gr.Column(elem_id="col-container"):
|
69 |
-
gr.Markdown("# FLUX.1 Ghibli Studio LoRA")
|
70 |
-
|
71 |
with gr.Row():
|
72 |
prompt = gr.Text(
|
73 |
label="Prompt",
|
@@ -142,7 +140,6 @@ with gr.Blocks(css=css) as demo:
|
|
142 |
run_on_click=True,
|
143 |
)
|
144 |
|
145 |
-
gr.Markdown("### Disclaimer\nFree of use, but both the dataset that FLUX has been fine-tuned on, as well as the FLUX.1-dev model are licensed under a non-commercial license.")
|
146 |
|
147 |
gr.on(
|
148 |
triggers=[run_button.click, prompt.submit],
|
|
|
58 |
]
|
59 |
|
60 |
css = """
|
61 |
+
footer {
|
62 |
+
visibility: hidden;
|
|
|
63 |
}
|
64 |
"""
|
65 |
|
66 |
+
with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css
|
67 |
+
) as demo:
|
68 |
with gr.Column(elem_id="col-container"):
|
|
|
|
|
69 |
with gr.Row():
|
70 |
prompt = gr.Text(
|
71 |
label="Prompt",
|
|
|
140 |
run_on_click=True,
|
141 |
)
|
142 |
|
|
|
143 |
|
144 |
gr.on(
|
145 |
triggers=[run_button.click, prompt.submit],
|