Spaces:
Sleeping
Sleeping
css changes
Browse files
app.py
CHANGED
@@ -377,8 +377,8 @@ def gradio_app():
|
|
377 |
with gr.Blocks(css=custom_html):
|
378 |
gr.Markdown("""
|
379 |
<div class="story-legacy-heading">StoryLegacy</div>
|
380 |
-
""")
|
381 |
-
gr.Markdown(f"""<div class="project-code">Project: {PROJECT_CODE}</div>""")
|
382 |
with gr.Row():
|
383 |
alert_box = gr.Markdown("", elem_id="alert-box", visible=False)
|
384 |
with gr.Row():
|
@@ -450,4 +450,4 @@ def gradio_app():
|
|
450 |
# Run the app
|
451 |
# reset_state()
|
452 |
app = gradio_app()
|
453 |
-
app.launch(
|
|
|
377 |
with gr.Blocks(css=custom_html):
|
378 |
gr.Markdown("""
|
379 |
<div class="story-legacy-heading">StoryLegacy</div>
|
380 |
+
""",elem_classes=["story-legacy-heading"])
|
381 |
+
gr.Markdown(f"""<div class="project-code">Project: {PROJECT_CODE}</div>""",,elem_classes=["project-code"])
|
382 |
with gr.Row():
|
383 |
alert_box = gr.Markdown("", elem_id="alert-box", visible=False)
|
384 |
with gr.Row():
|
|
|
450 |
# Run the app
|
451 |
# reset_state()
|
452 |
app = gradio_app()
|
453 |
+
app.launch()
|