Spaces:
Runtime error
Runtime error
css fix
Browse files
app.py
CHANGED
@@ -53,9 +53,10 @@ def predict(request: gr.Request, *args, progress=gr.Progress(track_tqdm=True)):
|
|
53 |
|
54 |
css = '''
|
55 |
#top{position: fixed;}
|
|
|
56 |
'''
|
57 |
-
with gr.Blocks() as demo:
|
58 |
-
with gr.Column():
|
59 |
gr.Markdown("# Expression Editor")
|
60 |
gr.Markdown("Demo for expression-editor cog image by fofr")
|
61 |
with gr.Row():
|
|
|
53 |
|
54 |
css = '''
|
55 |
#top{position: fixed;}
|
56 |
+
#col-container{max-width: 720px;}
|
57 |
'''
|
58 |
+
with gr.Blocks(css=css) as demo:
|
59 |
+
with gr.Column(elem_id="col-container"):
|
60 |
gr.Markdown("# Expression Editor")
|
61 |
gr.Markdown("Demo for expression-editor cog image by fofr")
|
62 |
with gr.Row():
|