Spaces:
Runtime error
Runtime error
Update app.py
Browse filesedit some stuff
app.py
CHANGED
|
@@ -108,6 +108,10 @@ custom_css = """
|
|
| 108 |
font-size: 14px;
|
| 109 |
min-height: 300px;
|
| 110 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
"""
|
| 112 |
|
| 113 |
block = gr.Blocks(css=custom_css)
|
|
@@ -117,7 +121,7 @@ with block:
|
|
| 117 |
|
| 118 |
with gr.Row():
|
| 119 |
with gr.Column():
|
| 120 |
-
gr.Image(image_path, elem_id="banner-image", show_label=
|
| 121 |
with gr.Column():
|
| 122 |
gr.HTML(description)
|
| 123 |
|
|
|
|
| 108 |
font-size: 14px;
|
| 109 |
min-height: 300px;
|
| 110 |
}
|
| 111 |
+
body {
|
| 112 |
+
background-color: #2E2252;
|
| 113 |
+
font-family: 'Roboto', sans-serif;
|
| 114 |
+
}
|
| 115 |
"""
|
| 116 |
|
| 117 |
block = gr.Blocks(css=custom_css)
|
|
|
|
| 121 |
|
| 122 |
with gr.Row():
|
| 123 |
with gr.Column():
|
| 124 |
+
gr.Image(image_path, elem_id="banner-image", show_label=True)
|
| 125 |
with gr.Column():
|
| 126 |
gr.HTML(description)
|
| 127 |
|