Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -75,7 +75,26 @@ def api_gradio(prompt, width, height):
|
|
| 75 |
|
| 76 |
return [image]
|
| 77 |
|
| 78 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
|
| 80 |
with gr.Blocks(css=css) as demo:
|
| 81 |
with gr.Row():
|
|
|
|
| 75 |
|
| 76 |
return [image]
|
| 77 |
|
| 78 |
+
css = css + """/*
|
| 79 |
+
footer {
|
| 80 |
+
visibility: hidden
|
| 81 |
+
}
|
| 82 |
+
#generate_button {
|
| 83 |
+
color: white;
|
| 84 |
+
border-color: #007bff;
|
| 85 |
+
background: #2563eb;
|
| 86 |
+
}*/
|
| 87 |
+
#save_button {
|
| 88 |
+
color: white;
|
| 89 |
+
border-color: #028b40;
|
| 90 |
+
border-radius: 100%;
|
| 91 |
+
background: #01b97c;
|
| 92 |
+
/*width: 200px;*/
|
| 93 |
+
}/*
|
| 94 |
+
#settings_header {
|
| 95 |
+
background: rgb(245, 105, 105);
|
| 96 |
+
}*/
|
| 97 |
+
"""
|
| 98 |
|
| 99 |
with gr.Blocks(css=css) as demo:
|
| 100 |
with gr.Row():
|