Spaces:
Runtime error
Runtime error
Update
Browse files
app.py
CHANGED
|
@@ -88,7 +88,8 @@ with gr.Blocks(css="style.css") as demo:
|
|
| 88 |
label='AnimateDiff-Lightning',
|
| 89 |
autoplay=True,
|
| 90 |
height=512,
|
| 91 |
-
width=512
|
|
|
|
| 92 |
)
|
| 93 |
|
| 94 |
prompt.submit(
|
|
|
|
| 88 |
label='AnimateDiff-Lightning',
|
| 89 |
autoplay=True,
|
| 90 |
height=512,
|
| 91 |
+
width=512,
|
| 92 |
+
elem_id="video_output"
|
| 93 |
)
|
| 94 |
|
| 95 |
prompt.submit(
|
style.css
CHANGED
|
@@ -1,3 +1,7 @@
|
|
| 1 |
.gradio-container {
|
| 2 |
-
max-width:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
}
|
|
|
|
| 1 |
.gradio-container {
|
| 2 |
+
max-width: 800px !important;
|
| 3 |
+
}
|
| 4 |
+
|
| 5 |
+
#video_output {
|
| 6 |
+
margin: 0 auto
|
| 7 |
}
|