Try reverting fill_width
Browse files
app.py
CHANGED
|
@@ -541,7 +541,7 @@ class EnrichedGradioUI(GradioUI):
|
|
| 541 |
theme = gr.themes.Default(font=["Oxanium", "sans-serif"], primary_hue="amber", secondary_hue="blue")
|
| 542 |
|
| 543 |
# Create a Gradio app with Blocks
|
| 544 |
-
with gr.Blocks(theme=theme, css=custom_css, js=custom_js
|
| 545 |
#Storing session hash in a state variable
|
| 546 |
session_hash_state = gr.State(None)
|
| 547 |
|
|
|
|
| 541 |
theme = gr.themes.Default(font=["Oxanium", "sans-serif"], primary_hue="amber", secondary_hue="blue")
|
| 542 |
|
| 543 |
# Create a Gradio app with Blocks
|
| 544 |
+
with gr.Blocks(theme=theme, css=custom_css, js=custom_js) as demo:
|
| 545 |
#Storing session hash in a state variable
|
| 546 |
session_hash_state = gr.State(None)
|
| 547 |
|