multimodalart HF Staff commited on
Commit
4af840b
·
verified ·
1 Parent(s): f617f88

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -7
app.py CHANGED
@@ -492,16 +492,19 @@ def load_custom_lora(link):
492
 
493
  def remove_custom_lora():
494
  return "", gr.update(visible=False), gr.update(visible=False), None
 
495
  with gr.Blocks(css="custom.css") as demo:
496
  gr_sdxl_loras = gr.State(value=sdxl_loras_raw)
497
  title = gr.HTML(
498
- """<h1><img src="https://i.imgur.com/DVoGw04.png">
499
- <span>Face to All SDXL<br><small style="
500
- font-size: 13px;
501
- display: block;
502
- font-weight: normal;
503
- opacity: 0.75;
504
- ">🧨 diffusers InstantID + ControlNet<br> inspired by fofr's <a href="https://github.com/fofr/cog-face-to-many" target="_blank">face-to-many</a></small></span></h1>""",
 
 
505
  elem_id="title",
506
  )
507
  selected_state = gr.State()
 
492
 
493
  def remove_custom_lora():
494
  return "", gr.update(visible=False), gr.update(visible=False), None
495
+
496
  with gr.Blocks(css="custom.css") as demo:
497
  gr_sdxl_loras = gr.State(value=sdxl_loras_raw)
498
  title = gr.HTML(
499
+ """<h1 style="display: flex;">
500
+ <img style='width: 120px;margin-right: 20px' src="https://i.imgur.com/DVoGw04.png">
501
+ <span>Face to All SDXL<br>
502
+ <small style="font-size: 13px;display: block;font-weight: normal;opacity: 0.75;">
503
+ 🧨 diffusers InstantID + ControlNet<br> inspired by fofr's
504
+ <a href="https://github.com/fofr/cog-face-to-many" target="_blank">face-to-many</a>
505
+ </small>
506
+ </span>
507
+ </h1>""",
508
  elem_id="title",
509
  )
510
  selected_state = gr.State()