colors
Browse files
app.py
CHANGED
@@ -57,9 +57,9 @@ def create_ui():
|
|
57 |
)
|
58 |
fetch_btn = gr.Button("Fetch and Validate", variant="primary")
|
59 |
|
60 |
-
#
|
61 |
upload_progress = gr.HTML(
|
62 |
-
"""<div class="progress-status">Ready for
|
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:
|
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 |
|