layerdiffusion
commited on
Commit
•
0bc71e0
1
Parent(s):
9fff69f
app.py
CHANGED
@@ -281,7 +281,12 @@ footer {display: none !important; visibility: hidden !important;}
|
|
281 |
.translucent {display: none !important; visibility: hidden !important;}
|
282 |
'''
|
283 |
|
284 |
-
|
|
|
|
|
|
|
|
|
|
|
285 |
with gr.Row(elem_classes='outer_parent'):
|
286 |
with gr.Column(scale=25):
|
287 |
with gr.Row():
|
|
|
281 |
.translucent {display: none !important; visibility: hidden !important;}
|
282 |
'''
|
283 |
|
284 |
+
from gradio.themes.utils import colors
|
285 |
+
|
286 |
+
with gr.Blocks(
|
287 |
+
fill_height=True, css=css,
|
288 |
+
theme=gr.themes.Default(primary_hue=colors.blue, secondary_hue=colors.cyan, neutral_hue=colors.gray)
|
289 |
+
) as demo:
|
290 |
with gr.Row(elem_classes='outer_parent'):
|
291 |
with gr.Column(scale=25):
|
292 |
with gr.Row():
|