aiqtech commited on
Commit
75849b3
·
verified ·
1 Parent(s): 5e46a89

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -81,12 +81,14 @@ def clear_result():
81
  return gr.update(value=None)
82
 
83
 
84
- title = """<h1 align="center">Diffusers Fast Inpaint</h1>
85
- <div align="center">Draw the mask over the subject you want to erase or change and write what you want to inpaint it with.</div>
86
- <div align="center">This is a lighting model with almost no CFG and 12 steps, so don't expect high quality generations.</div>
 
87
  """
88
 
89
- with gr.Blocks(fill_height=True, fill_width=True) as demo:
 
90
  gr.HTML(title)
91
  with gr.Row():
92
  with gr.Column():
 
81
  return gr.update(value=None)
82
 
83
 
84
+ css = """
85
+ footer {
86
+ visibility: hidden;
87
+ }
88
  """
89
 
90
+
91
+ with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:
92
  gr.HTML(title)
93
  with gr.Row():
94
  with gr.Column():