sheikhed commited on
Commit
b5dfd79
·
verified ·
1 Parent(s): 92760d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -227,7 +227,11 @@ def process_video(voice, url, text, progress=gr.Progress()):
227
 
228
  def create_interface():
229
  voices = get_voices()
230
- with gr.Blocks(css="#component-0 > :not(.prose) {display: none !important;}") as app:
 
 
 
 
231
  gr.Markdown("# Generator")
232
  with gr.Row():
233
  with gr.Column():
 
227
 
228
  def create_interface():
229
  voices = get_voices()
230
+ css = """
231
+ #component-0 > :not(.prose) {display: none !important;}
232
+ footer {display: none !important;}
233
+ """
234
+ with gr.Blocks(css=css) as app:
235
  gr.Markdown("# Generator")
236
  with gr.Row():
237
  with gr.Column():