Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -288,12 +288,12 @@ with gr.Blocks() as demo:
|
|
288 |
with gr.Tabs() as tabs:
|
289 |
with gr.Tab("txt2img", id='t2i'):
|
290 |
with gr.Row():
|
291 |
-
with gr.Column(scale=
|
292 |
prompt = gr.Textbox("space warrior, beautiful, female, ultrarealistic, soft lighting, 8k",
|
293 |
placeholder="Prompt", show_label=False, lines=3)
|
294 |
negative_prompt = gr.Textbox(placeholder="Negative Prompt", show_label=False, lines=3,
|
295 |
value="3d, cartoon, anime, (deformed eyes, nose, ears, nose), bad anatomy, ugly")
|
296 |
-
with gr.Row(scale=
|
297 |
text_button = gr.Button("Generate", variant='primary', elem_id="generate")
|
298 |
stop_btn = gr.Button("Cancel", elem_id="cancel")
|
299 |
|
|
|
288 |
with gr.Tabs() as tabs:
|
289 |
with gr.Tab("txt2img", id='t2i'):
|
290 |
with gr.Row():
|
291 |
+
with gr.Column(scale=4, min_width=600):
|
292 |
prompt = gr.Textbox("space warrior, beautiful, female, ultrarealistic, soft lighting, 8k",
|
293 |
placeholder="Prompt", show_label=False, lines=3)
|
294 |
negative_prompt = gr.Textbox(placeholder="Negative Prompt", show_label=False, lines=3,
|
295 |
value="3d, cartoon, anime, (deformed eyes, nose, ears, nose), bad anatomy, ugly")
|
296 |
+
with gr.Row(scale=6):
|
297 |
text_button = gr.Button("Generate", variant='primary', elem_id="generate")
|
298 |
stop_btn = gr.Button("Cancel", elem_id="cancel")
|
299 |
|