Update with Soft theme
Browse files
app.py
CHANGED
@@ -73,9 +73,9 @@ def analyze(text):
|
|
73 |
}
|
74 |
|
75 |
# -- Build Gradio Dashboard with Blocks
|
76 |
-
|
77 |
|
78 |
-
with gr.Blocks(theme=
|
79 |
#result_table td { padding: 8px; font-size: 1rem; }
|
80 |
#header { text-align: center; font-size: 2rem; font-weight: bold; margin-bottom: 10px; }
|
81 |
""") as demo:
|
|
|
73 |
}
|
74 |
|
75 |
# -- Build Gradio Dashboard with Blocks
|
76 |
+
theme = gr.themes.Soft()
|
77 |
|
78 |
+
with gr.Blocks(theme=theme, css="""
|
79 |
#result_table td { padding: 8px; font-size: 1rem; }
|
80 |
#header { text-align: center; font-size: 2rem; font-weight: bold; margin-bottom: 10px; }
|
81 |
""") as demo:
|