ginipick commited on
Commit
f647d1f
1 Parent(s): 89b9a2b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -16
app.py CHANGED
@@ -210,22 +210,13 @@ def remove_custom_lora():
210
 
211
  run_lora.zerogpu = True
212
 
213
- css = '''
214
- #gen_btn{height: 100%}
215
- #title{text-align: center}
216
- #title h1{font-size: 3em; display:inline-flex; align-items:center}
217
- #title img{width: 100px; margin-right: 0.5em}
218
- #gallery .grid-wrap{height: 10vh}
219
- #lora_list{background: var(--block-background-fill);padding: 0 1em .3em; font-size: 90%}
220
- .card_internal{display: flex;height: 100px;margin-top: .5em}
221
- .card_internal img{margin-right: 1em}
222
- .styler{--form-gap-width: 0px !important}
223
- #progress{height:30px}
224
- #progress .generating{display:none}
225
- .progress-container {width: 100%;height: 30px;background-color: #f0f0f0;border-radius: 15px;overflow: hidden;margin-bottom: 20px}
226
- .progress-bar {height: 100%;background-color: #4f46e5;width: calc(var(--current) / var(--total) * 100%);transition: width 0.5s ease-in-out}
227
- '''
228
- with gr.Blocks(theme=gr.themes.Soft(), css=css) as app:
229
  title = gr.HTML(
230
  """<h1><img src="https://huggingface.co/spaces/multimodalart/flux-lora-the-explorer/resolve/main/flux_lora.png" alt="LoRA"> FLUX LoRA the Explorer</h1>""",
231
  elem_id="title",
 
210
 
211
  run_lora.zerogpu = True
212
 
213
+ css = """
214
+ footer {
215
+ visibility: hidden;
216
+ }
217
+ """
218
+
219
+ with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as app:
 
 
 
 
 
 
 
 
 
220
  title = gr.HTML(
221
  """<h1><img src="https://huggingface.co/spaces/multimodalart/flux-lora-the-explorer/resolve/main/flux_lora.png" alt="LoRA"> FLUX LoRA the Explorer</h1>""",
222
  elem_id="title",