Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Fix CSS issue
Browse files
app.py
CHANGED
@@ -733,14 +733,14 @@ with gr.Blocks(css_paths="style.css", theme=gr.themes.Glass()) as demo:
|
|
733 |
gr.HTML(TITLE)
|
734 |
introduction_text = gr.Markdown(INTRODUCTION_TEXT_JA, elem_classes="markdown-text")
|
735 |
|
736 |
-
with gr.Tabs(
|
737 |
-
with gr.Tab("π
LLM Benchmark", elem_id="llm-benchmark-tab-table"
|
738 |
demo_leaderboard.render()
|
739 |
|
740 |
-
with gr.Tab("π About", elem_id="llm-benchmark-tab-
|
741 |
llm_benchmarks_text = gr.Markdown(LLM_BENCHMARKS_TEXT_JA, elem_classes="markdown-text")
|
742 |
|
743 |
-
with gr.Tab("π Submit here! ", elem_id="llm-benchmark-tab-
|
744 |
demo_submission.render()
|
745 |
|
746 |
with gr.Row():
|
|
|
733 |
gr.HTML(TITLE)
|
734 |
introduction_text = gr.Markdown(INTRODUCTION_TEXT_JA, elem_classes="markdown-text")
|
735 |
|
736 |
+
with gr.Tabs() as tabs:
|
737 |
+
with gr.Tab("π
LLM Benchmark", elem_id="llm-benchmark-tab-table"):
|
738 |
demo_leaderboard.render()
|
739 |
|
740 |
+
with gr.Tab("π About", elem_id="llm-benchmark-tab-about"):
|
741 |
llm_benchmarks_text = gr.Markdown(LLM_BENCHMARKS_TEXT_JA, elem_classes="markdown-text")
|
742 |
|
743 |
+
with gr.Tab("π Submit here! ", elem_id="llm-benchmark-tab-submit"):
|
744 |
demo_submission.render()
|
745 |
|
746 |
with gr.Row():
|
style.css
CHANGED
@@ -44,7 +44,7 @@ table th:first-child {
|
|
44 |
white-space: nowrap;
|
45 |
}
|
46 |
|
47 |
-
|
48 |
font-size: 20px;
|
49 |
}
|
50 |
|
|
|
44 |
white-space: nowrap;
|
45 |
}
|
46 |
|
47 |
+
#llm-benchmark-tab-table-button, #llm-benchmark-tab-about-button, #llm-benchmark-tab-submit-button {
|
48 |
font-size: 20px;
|
49 |
}
|
50 |
|