Ken-INOUE commited on
Commit
c743511
·
1 Parent(s): f1a3458

Update Gradio UI to allow vertical scrolling by adding custom CSS to the container.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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():