fixing contibutors logo sizes
Browse files
app.py
CHANGED
@@ -132,7 +132,7 @@ demo = gr.Blocks(css=custom_css)
|
|
132 |
with demo:
|
133 |
gr.HTML(TITLE)
|
134 |
with gr.Row():
|
135 |
-
with gr.Column(scale=
|
136 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
137 |
with gr.Column(scale=1, min_width=1):
|
138 |
gr.Image('src/display/kapital.jpg', scale=1,
|
@@ -359,26 +359,36 @@ 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=
|
363 |
-
|
|
|
|
|
|
|
|
|
364 |
show_label=False,
|
365 |
interactive=False,
|
366 |
show_share_button=False,
|
367 |
show_download_button=False)
|
368 |
|
369 |
-
with gr.Column(scale=
|
370 |
-
gr.Image('src/display/prodata.png',
|
|
|
|
|
371 |
show_label=False,
|
372 |
interactive=False,
|
373 |
show_share_button=False,
|
374 |
show_download_button=False)
|
375 |
|
376 |
-
with gr.Column(scale=
|
377 |
-
gr.Image('src/display/bhosai.jpeg',
|
|
|
|
|
378 |
show_label=False,
|
379 |
interactive=False,
|
380 |
show_share_button=False,
|
381 |
show_download_button=False)
|
|
|
|
|
382 |
|
383 |
scheduler = BackgroundScheduler()
|
384 |
scheduler.add_job(restart_space, "interval", seconds=300)
|
|
|
132 |
with demo:
|
133 |
gr.HTML(TITLE)
|
134 |
with gr.Row():
|
135 |
+
with gr.Column(scale=9):
|
136 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
137 |
with gr.Column(scale=1, min_width=1):
|
138 |
gr.Image('src/display/kapital.jpg', scale=1,
|
|
|
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=35):
|
363 |
+
pass
|
364 |
+
with gr.Column(scale=10, min_width=1, elem_classes='center-column'):
|
365 |
+
gr.Image('src/display/localdocs.jpeg',
|
366 |
+
scale = 1,
|
367 |
+
height=160,
|
368 |
show_label=False,
|
369 |
interactive=False,
|
370 |
show_share_button=False,
|
371 |
show_download_button=False)
|
372 |
|
373 |
+
with gr.Column(scale=10, min_width=1, elem_classes='center-column'):
|
374 |
+
gr.Image('src/display/prodata.png',
|
375 |
+
scale = 1,
|
376 |
+
height=160,
|
377 |
show_label=False,
|
378 |
interactive=False,
|
379 |
show_share_button=False,
|
380 |
show_download_button=False)
|
381 |
|
382 |
+
with gr.Column(scale=10, min_width=1, elem_classes='center-column'):
|
383 |
+
gr.Image('src/display/bhosai.jpeg',
|
384 |
+
scale = 1,
|
385 |
+
height=160,
|
386 |
show_label=False,
|
387 |
interactive=False,
|
388 |
show_share_button=False,
|
389 |
show_download_button=False)
|
390 |
+
with gr.Column(scale=35):
|
391 |
+
pass
|
392 |
|
393 |
scheduler = BackgroundScheduler()
|
394 |
scheduler.add_job(restart_space, "interval", seconds=300)
|