alm7640 Claude Sonnet 4.6 commited on
Commit
88a0b4b
Β·
1 Parent(s): 45f881f

fix: shrink upload box 50%, stack tips list on separate lines

Browse files

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

Files changed (1) hide show
  1. app.py +9 -7
app.py CHANGED
@@ -331,20 +331,22 @@ Upload your credit card statements and uncover what your spending is really tell
331
  """)
332
 
333
  with gr.Row():
334
- with gr.Column(scale=3):
335
  file_upload = gr.File(
336
  file_count="multiple",
337
  label="Upload Statements (PDF, CSV, XLS, XLSX, DOCX)",
338
  file_types=[".pdf", ".csv", ".xls", ".xlsx", ".docx"],
 
339
  )
340
  with gr.Column(scale=1):
341
- gr.Markdown("""
342
- **Better results with more data**
343
-
344
- 🟑 1 statement β€” basic insights only
345
- 🟠 6 months β€” recurring detection
346
- 🟒 12 months β€” full annual cost view
347
  πŸ”΅ 24+ months β€” Year-over-Year unlocked
 
348
  """)
349
 
350
  with gr.Accordion("βš™οΈ Settings", open=False):
 
331
  """)
332
 
333
  with gr.Row():
334
+ with gr.Column(scale=1):
335
  file_upload = gr.File(
336
  file_count="multiple",
337
  label="Upload Statements (PDF, CSV, XLS, XLSX, DOCX)",
338
  file_types=[".pdf", ".csv", ".xls", ".xlsx", ".docx"],
339
+ height=120,
340
  )
341
  with gr.Column(scale=1):
342
+ gr.HTML("""
343
+ <div style="padding:0.5rem 0;">
344
+ <strong>Better results with more data</strong><br><br>
345
+ 🟑 1 statement β€” basic insights only<br>
346
+ 🟠 6 months β€” recurring detection<br>
347
+ 🟒 12 months β€” full annual cost view<br>
348
  πŸ”΅ 24+ months β€” Year-over-Year unlocked
349
+ </div>
350
  """)
351
 
352
  with gr.Accordion("βš™οΈ Settings", open=False):