PeterL1n commited on
Commit
13600b0
1 Parent(s): 7096730
Files changed (2) hide show
  1. app.py +2 -1
  2. style.css +5 -1
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: 690px !important;
 
 
 
 
3
  }
 
1
  .gradio-container {
2
+ max-width: 800px !important;
3
+ }
4
+
5
+ #video_output {
6
+ margin: 0 auto
7
  }