Spaces:
trysem
/
Runtime error

trysem commited on
Commit
edea457
·
1 Parent(s): 9feec49

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -96,8 +96,8 @@ with gr.Blocks(css="footer {visibility: hidden}") as demo:
96
  </div>
97
  """
98
  )
99
- with gr.Column(elem_id="col-container"):
100
- with gr.Row(variant="compact"):
101
  input_text = gr.Textbox(
102
  label="Short Prompt",
103
  show_label=False,
@@ -106,10 +106,10 @@ with gr.Blocks(css="footer {visibility: hidden}") as demo:
106
  ).style(
107
  container=True,
108
  )
109
- see_prompts = gr.Button("✨ Magic Prompt ✨").style(full_width=True)
110
 
111
 
112
- with gr.Row(variant="compact"):
113
  prompt = gr.Textbox(
114
  label="Enter your prompt",
115
  show_label=False,
@@ -118,7 +118,7 @@ with gr.Blocks(css="footer {visibility: hidden}") as demo:
118
  ).style(
119
  container=False,
120
  )
121
- run = gr.Button("Generate Images").style(full_width=True)
122
 
123
  with gr.Row():
124
 
 
96
  </div>
97
  """
98
  )
99
+ with gr.Column():
100
+ with gr.Row():
101
  input_text = gr.Textbox(
102
  label="Short Prompt",
103
  show_label=False,
 
106
  ).style(
107
  container=True,
108
  )
109
+ see_prompts = gr.Button("✨ Magic Prompt ✨").style(full_width=False)
110
 
111
 
112
+ with gr.Row():
113
  prompt = gr.Textbox(
114
  label="Enter your prompt",
115
  show_label=False,
 
118
  ).style(
119
  container=False,
120
  )
121
+ run = gr.Button("Generate Images").style(full_width=False)
122
 
123
  with gr.Row():
124