ginipick commited on
Commit
96931bd
·
verified ·
1 Parent(s): 7808ef5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -207,8 +207,14 @@ def gen_video(input_image, prompt, negative_prompt, diffusion_step, height, widt
207
  if not os.path.exists(args.save_img_path):
208
  os.makedirs(args.save_img_path)
209
 
 
 
 
 
 
210
 
211
- with gr.Blocks() as demo:
 
212
  with gr.Column(variant="panel"):
213
  with gr.Row():
214
  prompt_textbox = gr.Textbox(label="Prompt", lines=1)
 
207
  if not os.path.exists(args.save_img_path):
208
  os.makedirs(args.save_img_path)
209
 
210
+ css = """
211
+ footer {
212
+ visibility: hidden;
213
+ }
214
+ """
215
 
216
+
217
+ with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:
218
  with gr.Column(variant="panel"):
219
  with gr.Row():
220
  prompt_textbox = gr.Textbox(label="Prompt", lines=1)