fffiloni commited on
Commit
4a778bd
1 Parent(s): fe073ef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -52,7 +52,7 @@ description = "Create images of a given character in different poses • running
52
  css="""
53
  #col-container{
54
  margin: 0 auto;
55
- max-width: 780px;
56
  text-align: left;
57
  }
58
  """
@@ -64,7 +64,7 @@ with gr.Blocks(css=css) as app:
64
  """)
65
 
66
  with gr.Row():
67
- with gr.Column():
68
  prompt = gr.Textbox(
69
  label="Prompt", info='''Describe the subject. Include clothes and hairstyle for more consistency.'''
70
  )
@@ -107,7 +107,7 @@ with gr.Blocks(css=css) as app:
107
  label="Seed", info='''Set a seed for reproducibility. Random by default.''', value=None
108
  )
109
 
110
- with gr.Column():
111
  consistent_results = gr.Gallery(label="Consistent Results")
112
 
113
  inputs = [prompt, negative_prompt, subject, number_of_outputs, number_of_images_per_pose, randomise_poses, output_format, output_quality, seed]
 
52
  css="""
53
  #col-container{
54
  margin: 0 auto;
55
+ max-width: 1600px;
56
  text-align: left;
57
  }
58
  """
 
64
  """)
65
 
66
  with gr.Row():
67
+ with gr.Column(scale=1):
68
  prompt = gr.Textbox(
69
  label="Prompt", info='''Describe the subject. Include clothes and hairstyle for more consistency.'''
70
  )
 
107
  label="Seed", info='''Set a seed for reproducibility. Random by default.''', value=None
108
  )
109
 
110
+ with gr.Column(scale=3):
111
  consistent_results = gr.Gallery(label="Consistent Results")
112
 
113
  inputs = [prompt, negative_prompt, subject, number_of_outputs, number_of_images_per_pose, randomise_poses, output_format, output_quality, seed]