Update Gradio UI to allow vertical scrolling by adding custom CSS to the container.
Browse files
app.py
CHANGED
|
@@ -96,7 +96,7 @@ def detect_trends(process_name, datetime_str, window_minutes, csv_file, excel_fi
|
|
| 96 |
|
| 97 |
# --- Gradio UI ---
|
| 98 |
def create_demo():
|
| 99 |
-
with gr.Blocks() as demo:
|
| 100 |
gr.Markdown("## 📈 傾向検出アプリ")
|
| 101 |
|
| 102 |
with gr.Row():
|
|
|
|
| 96 |
|
| 97 |
# --- Gradio UI ---
|
| 98 |
def create_demo():
|
| 99 |
+
with gr.Blocks(css=".gradio-container {overflow-y: auto;}") as demo:
|
| 100 |
gr.Markdown("## 📈 傾向検出アプリ")
|
| 101 |
|
| 102 |
with gr.Row():
|