Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -281,7 +281,14 @@ def invert_init_image_display(image):
|
|
281 |
return Image.fromarray(inverted)
|
282 |
return inverted
|
283 |
|
284 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
285 |
gr.Markdown(
|
286 |
"""
|
287 |

|
|
|
281 |
return Image.fromarray(inverted)
|
282 |
return inverted
|
283 |
|
284 |
+
css = """
|
285 |
+
h1 {
|
286 |
+
text-align: center;
|
287 |
+
display:block;
|
288 |
+
}
|
289 |
+
"""
|
290 |
+
|
291 |
+
with gr.Blocks(theme='Hev832/Applio', css=css) as blocks:
|
292 |
gr.Markdown(
|
293 |
"""
|
294 |

|