ehristoforu commited on
Commit
5bf6550
·
1 Parent(s): 8197b85

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -7
app.py CHANGED
@@ -81,15 +81,14 @@ with gr.Blocks(css=css) as demo:
81
  </div>
82
  """
83
  )
84
- with gr.Group():
85
 
86
- with gr.Row():
87
- gallery_output = gr.Gallery(label="Generated images", show_label=False, elem_id="gallery").style(grid=[4], height="auto")
88
 
89
- with gr.Row():
90
- text_prompt = gr.Textbox(show_label=False, placeholder="Enter your prompt", max_lines=1)
91
- negative_prompt = gr.Textbox(show_label=False, placeholder="Enter a negative", max_lines=1)
92
- text_button = gr.Button("Generate", size="sm", icon="https://www.gstatic.com/android/keyboard/emojikitchen/20210521/u1fa84/u1fa84_u1fa84.png")
93
 
94
 
95
 
 
81
  </div>
82
  """
83
  )
 
84
 
85
+ with gr.Row():
86
+ gallery_output = gr.Gallery(label="Generated images", show_label=False, elem_id="gallery").style(grid=[4], height="auto")
87
 
88
+ with gr.Row():
89
+ text_prompt = gr.Textbox(show_label=False, placeholder="Enter your prompt", max_lines=1)
90
+ negative_prompt = gr.Textbox(show_label=False, placeholder="Enter a negative", max_lines=1)
91
+ text_button = gr.Button("Generate", size="sm", icon="https://www.gstatic.com/android/keyboard/emojikitchen/20210521/u1fa84/u1fa84_u1fa84.png")
92
 
93
 
94