Spaces:
Sleeping
Sleeping
CK-Explorer
commited on
Commit
·
9e83724
1
Parent(s):
39b0aa8
style: change the layout scale for visibility
Browse files- ui/layout.py +2 -2
ui/layout.py
CHANGED
|
@@ -62,7 +62,7 @@ def create_main_gr_blocks_ui(
|
|
| 62 |
title_content = open_html(TITLE_HTML)
|
| 63 |
gr.HTML(title_content)
|
| 64 |
with gr.Row():
|
| 65 |
-
with gr.Column():
|
| 66 |
(
|
| 67 |
primary_file,
|
| 68 |
secondary_file,
|
|
@@ -70,7 +70,7 @@ def create_main_gr_blocks_ui(
|
|
| 70 |
merge_button,
|
| 71 |
cancel_button
|
| 72 |
) = _create_subtitles_io_block()
|
| 73 |
-
with gr.Column():
|
| 74 |
gr.Markdown("### ⚙️ Configurations")
|
| 75 |
with gr.Tab("Model Selection"):
|
| 76 |
model_name = _create_model_configurations_block()
|
|
|
|
| 62 |
title_content = open_html(TITLE_HTML)
|
| 63 |
gr.HTML(title_content)
|
| 64 |
with gr.Row():
|
| 65 |
+
with gr.Column(scale=9):
|
| 66 |
(
|
| 67 |
primary_file,
|
| 68 |
secondary_file,
|
|
|
|
| 70 |
merge_button,
|
| 71 |
cancel_button
|
| 72 |
) = _create_subtitles_io_block()
|
| 73 |
+
with gr.Column(scale=11):
|
| 74 |
gr.Markdown("### ⚙️ Configurations")
|
| 75 |
with gr.Tab("Model Selection"):
|
| 76 |
model_name = _create_model_configurations_block()
|