Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -81,6 +81,13 @@ css="""
|
|
| 81 |
margin: 0 auto;
|
| 82 |
max-width: 960px;
|
| 83 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
"""
|
| 85 |
|
| 86 |
with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
|
@@ -99,7 +106,7 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
|
| 99 |
placeholder="Enter your prompt for editing (e.g., 'Remove glasses', 'Add a hat')",
|
| 100 |
container=False,
|
| 101 |
)
|
| 102 |
-
run_button = gr.Button("Run", scale=0)
|
| 103 |
with gr.Accordion("Advanced Settings", open=False):
|
| 104 |
|
| 105 |
seed = gr.Slider(
|
|
|
|
| 81 |
margin: 0 auto;
|
| 82 |
max-width: 960px;
|
| 83 |
}
|
| 84 |
+
.submit-btn {
|
| 85 |
+
background-color: #2980b9 !important;
|
| 86 |
+
color: white !important;
|
| 87 |
+
}
|
| 88 |
+
.submit-btn:hover {
|
| 89 |
+
background-color: #3498db !important;
|
| 90 |
+
}
|
| 91 |
"""
|
| 92 |
|
| 93 |
with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
|
|
|
| 106 |
placeholder="Enter your prompt for editing (e.g., 'Remove glasses', 'Add a hat')",
|
| 107 |
container=False,
|
| 108 |
)
|
| 109 |
+
run_button = gr.Button("Run", elem_classes="submit-btn", scale=0)
|
| 110 |
with gr.Accordion("Advanced Settings", open=False):
|
| 111 |
|
| 112 |
seed = gr.Slider(
|