shvy commited on
Commit
ded942c
ยท
verified ยท
1 Parent(s): 0e98b75

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -127,6 +127,8 @@ css = """
127
  border-radius: 10px;
128
  padding: 20px;
129
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
 
 
130
  }
131
  .file-upload {
132
  background-color: #4CAF50;
@@ -150,7 +152,7 @@ demo = gr.Interface(
150
  file_types=["csv"]
151
  ),
152
  outputs=[
153
- gr.Markdown(label="๐Ÿ“‹ Analysis Report", lines=20),
154
  gr.Image(label="๐Ÿ“Š Advanced Visualizations")
155
  ],
156
  title="๐Ÿง  Smart Data Analyzer",
 
127
  border-radius: 10px;
128
  padding: 20px;
129
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
130
+ max-height: 500px;
131
+ overflow-y: auto;
132
  }
133
  .file-upload {
134
  background-color: #4CAF50;
 
152
  file_types=["csv"]
153
  ),
154
  outputs=[
155
+ gr.Markdown(), # Removed 'lines' parameter
156
  gr.Image(label="๐Ÿ“Š Advanced Visualizations")
157
  ],
158
  title="๐Ÿง  Smart Data Analyzer",