Sebastiankay commited on
Commit
c833ed0
1 Parent(s): f59a3f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -164,7 +164,7 @@ with gr.Blocks(theme=theme, head=custom_head, css=custom_css, js=custom_js, titl
164
  gr.Markdown(""" """)
165
  with gr.Tab("Image Generator"):
166
  with gr.Row():
167
- with gr.Column(min_width=420, scale=1):
168
  with gr.Row():
169
  placeholder_text = "[???] Generiert dir einen zufälligen Prompt.\n[STERN] optimiert deinen eignen Prompt.\n[RUN] generiert dein Bild."
170
  text_prompt = gr.Textbox(label="Prompt", show_label=False, lines=12, max_lines=18, placeholder=placeholder_text, elem_id="prompt_input", elem_classes="prompt-input", autofocus=True)
@@ -184,7 +184,7 @@ with gr.Blocks(theme=theme, head=custom_head, css=custom_css, js=custom_js, titl
184
  image_seed = gr.Slider(label="Seed", info="Jeder Seed generiert ein anderes Bild mit dem selben Prompt", minimum=0, step=1, value=42, maximum=MAX_SEED)
185
  randomize_seed = gr.Checkbox(label="Randomize seed", value=False)
186
 
187
- with gr.Column(min_width=600, scale=3):
188
  with gr.Row():
189
  with gr.Column(scale=1):
190
  with gr.Row():
 
164
  gr.Markdown(""" """)
165
  with gr.Tab("Image Generator"):
166
  with gr.Row():
167
+ with gr.Column(scale=1): # min_width=420,
168
  with gr.Row():
169
  placeholder_text = "[???] Generiert dir einen zufälligen Prompt.\n[STERN] optimiert deinen eignen Prompt.\n[RUN] generiert dein Bild."
170
  text_prompt = gr.Textbox(label="Prompt", show_label=False, lines=12, max_lines=18, placeholder=placeholder_text, elem_id="prompt_input", elem_classes="prompt-input", autofocus=True)
 
184
  image_seed = gr.Slider(label="Seed", info="Jeder Seed generiert ein anderes Bild mit dem selben Prompt", minimum=0, step=1, value=42, maximum=MAX_SEED)
185
  randomize_seed = gr.Checkbox(label="Randomize seed", value=False)
186
 
187
+ with gr.Column(scale=3): # min_width=600,
188
  with gr.Row():
189
  with gr.Column(scale=1):
190
  with gr.Row():