Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -176,7 +176,15 @@ examples = [
|
|
| 176 |
"an astronaut sitting in a diner, eating fries, cinematic, analog film",
|
| 177 |
]
|
| 178 |
|
| 179 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 180 |
gr.Markdown(DESCRIPTION)
|
| 181 |
with gr.Row(equal_height=False):
|
| 182 |
with gr.Group():
|
|
|
|
| 176 |
"an astronaut sitting in a diner, eating fries, cinematic, analog film",
|
| 177 |
]
|
| 178 |
|
| 179 |
+
css = '''
|
| 180 |
+
.gradio-container{max-width: 560px !important}
|
| 181 |
+
h1{text-align:center}
|
| 182 |
+
footer {
|
| 183 |
+
visibility: hidden
|
| 184 |
+
}
|
| 185 |
+
'''
|
| 186 |
+
|
| 187 |
+
with gr.Blocks(css=css) as demo:
|
| 188 |
gr.Markdown(DESCRIPTION)
|
| 189 |
with gr.Row(equal_height=False):
|
| 190 |
with gr.Group():
|