Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -477,8 +477,12 @@ css = '''
|
|
| 477 |
#custom_lora_btn{margin-top: auto;margin-bottom: 11px}
|
| 478 |
#random_btn{font-size: 300%}
|
| 479 |
'''
|
|
|
|
|
|
|
|
|
|
|
|
|
| 480 |
|
| 481 |
-
with gr.Blocks(css=css, delete_cache=(60, 3600)) as app:
|
| 482 |
title = gr.HTML(
|
| 483 |
"""<h1><img src="https://i.imgur.com/wMh2Oek.png" alt="LoRA"> LoRA Lab [beta]</h1><br><span style="
|
| 484 |
margin-top: -25px !important;
|
|
|
|
| 477 |
#custom_lora_btn{margin-top: auto;margin-bottom: 11px}
|
| 478 |
#random_btn{font-size: 300%}
|
| 479 |
'''
|
| 480 |
+
theme = gr.themes.Monochrome(
|
| 481 |
+
text_size=gr.themes.Size(lg="18px", md="15px", sm="13px", xl="22px", xs="12px", xxl="24px", xxs="9px"),
|
| 482 |
+
font=[gr.themes.GoogleFont("Source Sans Pro"), "ui-sans-serif", "system-ui", "sans-serif"],
|
| 483 |
+
)
|
| 484 |
|
| 485 |
+
with gr.Blocks(theme=theme, css=css, delete_cache=(60, 3600)) as app:
|
| 486 |
title = gr.HTML(
|
| 487 |
"""<h1><img src="https://i.imgur.com/wMh2Oek.png" alt="LoRA"> LoRA Lab [beta]</h1><br><span style="
|
| 488 |
margin-top: -25px !important;
|