luisoala commited on
Commit
d9c525e
·
1 Parent(s): b12957e
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -57,9 +57,9 @@ def create_ui():
57
  )
58
  fetch_btn = gr.Button("Fetch and Validate", variant="primary")
59
 
60
- # Progress/status message - moved up inside the input group
61
  upload_progress = gr.HTML(
62
- """<div class="progress-status">Ready for validation</div>""",
63
  visible=True)
64
 
65
  # Now create the validation results section in a separate group
@@ -72,7 +72,7 @@ def create_ui():
72
  <style>
73
  /* Set max width and center the app */
74
  .gradio-container {
75
- max-width: 650px !important;
76
  margin: 0 auto !important;
77
  }
78
 
 
57
  )
58
  fetch_btn = gr.Button("Fetch and Validate", variant="primary")
59
 
60
+ # Change initial message to match upload tab
61
  upload_progress = gr.HTML(
62
+ """<div class="progress-status">Ready for upload</div>""",
63
  visible=True)
64
 
65
  # Now create the validation results section in a separate group
 
72
  <style>
73
  /* Set max width and center the app */
74
  .gradio-container {
75
+ max-width: 750px !important;
76
  margin: 0 auto !important;
77
  }
78