Commit ·
6971200
1
Parent(s): 6d72c82
changed centering to column
Browse files
app.py
CHANGED
|
@@ -359,27 +359,24 @@ with demo:
|
|
| 359 |
gr.Markdown(LLM_DATASET_TEXT, elem_classes="markdown-text")
|
| 360 |
gr.HTML("""<h1 align="center" id="space-title"> Contributor Companies and Teams </h1>""")
|
| 361 |
with gr.Row():
|
| 362 |
-
with gr.Column(scale=1):
|
| 363 |
gr.Image('src/display/localdocs.jpeg', width = 100, height = 100,
|
| 364 |
show_label=False,
|
| 365 |
interactive=False,
|
| 366 |
show_share_button=False,
|
| 367 |
-
show_download_button=False
|
| 368 |
-
|
| 369 |
-
with gr.Column(scale=1):
|
| 370 |
gr.Image('src/display/prodata.png', width = 100, height = 100,
|
| 371 |
show_label=False,
|
| 372 |
interactive=False,
|
| 373 |
show_share_button=False,
|
| 374 |
-
show_download_button=False
|
| 375 |
-
|
| 376 |
-
with gr.Column(scale=1):
|
| 377 |
gr.Image('src/display/bhosai.jpeg', width = 100, height = 100,
|
| 378 |
show_label=False,
|
| 379 |
interactive=False,
|
| 380 |
show_share_button=False,
|
| 381 |
-
show_download_button=False
|
| 382 |
-
elem_classes="center-image")
|
| 383 |
|
| 384 |
scheduler = BackgroundScheduler()
|
| 385 |
scheduler.add_job(restart_space, "interval", seconds=300)
|
|
|
|
| 359 |
gr.Markdown(LLM_DATASET_TEXT, elem_classes="markdown-text")
|
| 360 |
gr.HTML("""<h1 align="center" id="space-title"> Contributor Companies and Teams </h1>""")
|
| 361 |
with gr.Row():
|
| 362 |
+
with gr.Column(scale=1, elem_classes="center-column"):
|
| 363 |
gr.Image('src/display/localdocs.jpeg', width = 100, height = 100,
|
| 364 |
show_label=False,
|
| 365 |
interactive=False,
|
| 366 |
show_share_button=False,
|
| 367 |
+
show_download_button=False)
|
| 368 |
+
with gr.Column(scale=1, elem_classes="center-column"):
|
|
|
|
| 369 |
gr.Image('src/display/prodata.png', width = 100, height = 100,
|
| 370 |
show_label=False,
|
| 371 |
interactive=False,
|
| 372 |
show_share_button=False,
|
| 373 |
+
show_download_button=False)
|
| 374 |
+
with gr.Column(scale=1, elem_classes="center-column"):
|
|
|
|
| 375 |
gr.Image('src/display/bhosai.jpeg', width = 100, height = 100,
|
| 376 |
show_label=False,
|
| 377 |
interactive=False,
|
| 378 |
show_share_button=False,
|
| 379 |
+
show_download_button=False)
|
|
|
|
| 380 |
|
| 381 |
scheduler = BackgroundScheduler()
|
| 382 |
scheduler.add_job(restart_space, "interval", seconds=300)
|