Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -68,7 +68,13 @@ def infer(lora_1_id, lora_1_sfts, lora_2_id, lora_2_sfts, prompt, negative_promp
|
|
68 |
|
69 |
return image, seed
|
70 |
|
71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
with gr.Column(elem_id="col-container"):
|
73 |
|
74 |
title = gr.HTML(
|
|
|
68 |
|
69 |
return image, seed
|
70 |
|
71 |
+
css="""
|
72 |
+
#col-container{
|
73 |
+
max-width: 720px;
|
74 |
+
}
|
75 |
+
"""
|
76 |
+
|
77 |
+
with gr.Blocks(css=css) as demo:
|
78 |
with gr.Column(elem_id="col-container"):
|
79 |
|
80 |
title = gr.HTML(
|