Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -62,6 +62,11 @@ css = """
|
|
62 |
margin: 0 auto;
|
63 |
max-width: 640px;
|
64 |
}
|
|
|
|
|
|
|
|
|
|
|
65 |
"""
|
66 |
|
67 |
with gr.Blocks(css=css) as demo:
|
@@ -80,7 +85,7 @@ with gr.Blocks(css=css) as demo:
|
|
80 |
)
|
81 |
|
82 |
with gr.Row():
|
83 |
-
run_button = gr.Button("Run", scale=0, variant="primary")
|
84 |
|
85 |
with gr.Accordion("Advanced Settings", open=False):
|
86 |
with gr.Row():
|
|
|
62 |
margin: 0 auto;
|
63 |
max-width: 640px;
|
64 |
}
|
65 |
+
#run-button {
|
66 |
+
width: 100%;
|
67 |
+
margin-top: 10px;
|
68 |
+
display: block;
|
69 |
+
}
|
70 |
"""
|
71 |
|
72 |
with gr.Blocks(css=css) as demo:
|
|
|
85 |
)
|
86 |
|
87 |
with gr.Row():
|
88 |
+
run_button = gr.Button("Run", scale=0, variant="primary", elem_id="run-button")
|
89 |
|
90 |
with gr.Accordion("Advanced Settings", open=False):
|
91 |
with gr.Row():
|