Spaces:
Running
Running
style(space): add vertical space between widgets
Browse files
app.py
CHANGED
|
@@ -37,11 +37,13 @@ with gr.Blocks(css_paths=['layout.css']) as demo:
|
|
| 37 |
with gr.Row():
|
| 38 |
with gr.Column():
|
| 39 |
source_image = gr.Image(type="pil", label="Source Image")
|
| 40 |
-
gr.HTML('<br>
|
| 41 |
reference_image = gr.Image(type="pil", label="Reference Colors")
|
| 42 |
with gr.Column():
|
| 43 |
result_image = gr.Image(type="pil", label="Resulting Image", format="png")
|
|
|
|
| 44 |
method_dropdown = gr.Dropdown(choices=transfer_methods, label="Transfer Method", value='hm-mkl-hm')
|
|
|
|
| 45 |
submit_button = gr.Button("Transfer Colors")
|
| 46 |
|
| 47 |
submit_button.click(
|
|
|
|
| 37 |
with gr.Row():
|
| 38 |
with gr.Column():
|
| 39 |
source_image = gr.Image(type="pil", label="Source Image")
|
| 40 |
+
gr.HTML('<br>')
|
| 41 |
reference_image = gr.Image(type="pil", label="Reference Colors")
|
| 42 |
with gr.Column():
|
| 43 |
result_image = gr.Image(type="pil", label="Resulting Image", format="png")
|
| 44 |
+
gr.HTML('<br>')
|
| 45 |
method_dropdown = gr.Dropdown(choices=transfer_methods, label="Transfer Method", value='hm-mkl-hm')
|
| 46 |
+
gr.HTML('<br>')
|
| 47 |
submit_button = gr.Button("Transfer Colors")
|
| 48 |
|
| 49 |
submit_button.click(
|