Yaron Koresh commited on
Commit
b18b059
·
verified ·
1 Parent(s): e030b48

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -284,7 +284,7 @@ def ui():
284
  with gr.Column():
285
  with gr.Row():
286
  img = gr.Image(label="Upload photo",show_label=True,container=False,type="pil")
287
- with gr.Column(scale=0.66):
288
  with gr.Row():
289
  title = gr.Textbox(
290
  placeholder="Logo title",
@@ -332,9 +332,10 @@ def ui():
332
  interactive=True
333
  )
334
  with gr.Row():
335
- res_img = gr.Image(interactive=False,elem_classes="image-container", label="Result", show_label=True, type='filepath', show_share_button=False, scale=0.5)
336
- with gr.Row():
337
- res_vid = gr.Video(interactive=False,elem_classes="image-container", label="Result", show_label=True, show_share_button=False, scale=0.5)
 
338
  with gr.Row():
339
  run_button = gr.Button("Start!",elem_classes="btn",scale=0)
340
 
 
284
  with gr.Column():
285
  with gr.Row():
286
  img = gr.Image(label="Upload photo",show_label=True,container=False,type="pil")
287
+ with gr.Column(scale=0.75):
288
  with gr.Row():
289
  title = gr.Textbox(
290
  placeholder="Logo title",
 
332
  interactive=True
333
  )
334
  with gr.Row():
335
+ with gr.Column():
336
+ res_img = gr.Image(interactive=False,elem_classes="image-container", label="Result", show_label=True, type='filepath', show_share_button=False, scale=0.5)
337
+ with gr.Column():
338
+ res_vid = gr.Video(interactive=False,elem_classes="image-container", label="Result", show_label=True, show_share_button=False, scale=0.5)
339
  with gr.Row():
340
  run_button = gr.Button("Start!",elem_classes="btn",scale=0)
341