Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -367,6 +367,14 @@ examples = [
|
|
367 |
css = '''
|
368 |
.gradio-container{max-width: 888px !important}
|
369 |
h1{text-align:center}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
'''
|
371 |
|
372 |
with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
@@ -379,7 +387,7 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
|
379 |
placeholder="Enter your prompt",
|
380 |
container=False,
|
381 |
)
|
382 |
-
run_button = gr.Button("Generate as (1024 x 1024)🤗", scale=0)
|
383 |
|
384 |
with gr.Row(visible=True):
|
385 |
grid_size_selection = gr.Dropdown(
|
|
|
367 |
css = '''
|
368 |
.gradio-container{max-width: 888px !important}
|
369 |
h1{text-align:center}
|
370 |
+
|
371 |
+
.submit-btn {
|
372 |
+
background-color: #9a50d5 !important;
|
373 |
+
color: white !important;
|
374 |
+
}
|
375 |
+
.submit-btn:hover {
|
376 |
+
background-color: #8f00ff !important;
|
377 |
+
}
|
378 |
'''
|
379 |
|
380 |
with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
|
|
387 |
placeholder="Enter your prompt",
|
388 |
container=False,
|
389 |
)
|
390 |
+
run_button = gr.Button("Generate as (1024 x 1024)🤗", scale=0, elem_classes="submit-btn")
|
391 |
|
392 |
with gr.Row(visible=True):
|
393 |
grid_size_selection = gr.Dropdown(
|