Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -438,6 +438,13 @@ css = '''
|
|
438 |
h1 {
|
439 |
text-align: center;
|
440 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
441 |
'''
|
442 |
|
443 |
title = """<h1 align="center">IMAGINEO-4K : SDXL</h1>
|
@@ -459,7 +466,7 @@ with gr.Blocks(css=css) as demo:
|
|
459 |
placeholder="Enter your prompt :/",
|
460 |
container=False,
|
461 |
)
|
462 |
-
run_button = gr.Button("Generate Image as ( 1024 x 1024 ) 🪧", scale=0)
|
463 |
|
464 |
with gr.Row(visible=True):
|
465 |
model_selection = gr.Dropdown(
|
|
|
438 |
h1 {
|
439 |
text-align: center;
|
440 |
}
|
441 |
+
.submit-btn {
|
442 |
+
background-color: #ff812b !important;
|
443 |
+
color: white !important;
|
444 |
+
}
|
445 |
+
.submit-btn:hover {
|
446 |
+
background-color: #ff6700 !important;
|
447 |
+
}
|
448 |
'''
|
449 |
|
450 |
title = """<h1 align="center">IMAGINEO-4K : SDXL</h1>
|
|
|
466 |
placeholder="Enter your prompt :/",
|
467 |
container=False,
|
468 |
)
|
469 |
+
run_button = gr.Button("Generate Image as ( 1024 x 1024 ) 🪧", scale=0, elem_classes="submit-btn")
|
470 |
|
471 |
with gr.Row(visible=True):
|
472 |
model_selection = gr.Dropdown(
|